Skip to main content

Q) What are instance methods?




A)
Non-static methods of a class are nothing but instance methods. These methods can be called only on the instances and hence the name. I.e. without creating the object of the class we can’t call its instance method.

Comments