java - How is a static field stored and referenced? -


a static non-access modifier create object given class shared instances of class. same object can accessed class or of instances.

my question related underpinnings of situation. how static field stored , referenced in memory? when first instance instantiated, object created reference instance, shared further instantiations of same class?


Comments