J
Jason Cavett
If I make a static class (AKA - everything in a class is static), does
that mean this class is loaded into memory as soon as the JVM starts
(assuming the class is being used somewhere within the application),
or is it lazily instantiated and not loaded into memory until it
actually needs to be used?
I searched around, but couldn't find the information. Thanks.
that mean this class is loaded into memory as soon as the JVM starts
(assuming the class is being used somewhere within the application),
or is it lazily instantiated and not loaded into memory until it
actually needs to be used?
I searched around, but couldn't find the information. Thanks.