09 — Static vs Instance members
Static members
staticfields and methods belong to the class itself. Use for shared state/utility methods.
Instance members
- Each object gets its own copy of instance fields.
Example: StaticInstanceExample.java shows differences and common pitfalls.