<<< Using Java API | Index | >>> |
Some methods of a Java class may be declared static.
Such methods become common to all objects of the class:
a static method performs the same operation for all objects of the class.
The static methods can be called without object reference, but they can also be called from an actual object.
<<< Using Java API | Index | >>> |