InterviewSolution
Saved Bookmarks
| 1. |
What Is A Static Method? |
|
Answer» A static method is a method that BELONGS to the class rather than any OBJECT of the class and doesn't apply to an object or EVEN require that any OBJECTS of the class have been instantiated. A static method is a method that belongs to the class rather than any object of the class and doesn't apply to an object or even require that any objects of the class have been instantiated. |
|