Home Help Java S Static



Static
Posted on: November 17, 2009 at 12:00 AM
Static means one each class, rather than per for each object regardless of how many instance of a class might exist.

Static

     

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

 

Related Tags for Static:


More Tutorials from this section

Ask Questions?    Discuss: Static  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

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.