DEVFYI - Developer Resource - FYI

What is static

J2SE Interview Questions and Answers


(Continued from previous question...)

206. What is static

A Java keyword used to define a variable as a class variable. Classes maintain one copy of class variables regardless of how many instances exist of that class. static can also be used to define a method as a class method. Class methods are invoked by the class instead of a specific instance, and can only operate on class variables.

(Continued on next question...)

Other Interview Questions