InterviewSolution
Saved Bookmarks
| 1. |
What Is Class Method ? |
|
Answer» A method that is INVOKED without reference to a PARTICULAR object. Class methods affect the class as a whole, not a particular INSTANCE of the class. Also CALLED a static method. See also instance method. A method that is invoked without reference to a particular object. Class methods affect the class as a whole, not a particular instance of the class. Also called a static method. See also instance method. |
|