Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
> Could you please explain follwing problems > 1. I don't know the real meanning of "static" in a Java class > > Lanka bogoda
Classname.staticMethodName(...). The static member will be loaded when the class is loaded in the memory and will not created for every object of that class. So, the member( method or variable) can be used by every object of that class type. If you are not clear, please feel free to contact me at keelypavan@hotmail.com Thank you and bye Replies: |
Sponsored Links
|