Static means one each class, rather than per for each object regardless of how many instance of a class might exist. It means that they can be used without creating an instance of a class. Static methods are implicitly final method, since overriding depends on the type of the object, and static methods are attached to a class, rather than attaching to an object. A static method of a subclass can shadow a static method of the superclass, regarding the original method was not declared final. However, a static method can't be overridden by a nonstatic method. Or we can say that a static method can't be converted into an instance method in a subclass.
To read more about static click at:
http://www.roseindia.net/struts/struts2/strutsresources/static-parameter.shtml
http://www.roseindia.net/java/beginners/howtoaccessstaticmethod.shtml
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Static
Post your Comment