Class vs. instance fields
Instance fields
- remember: object is an instance of a class
- data that changes from object to object
- stored with each object
Class fields
- declared with keyword static
- common, shared (single copy) among all instances
- stored in same "static" location