Instance method
Appearance
In computer science object-oriented programming, an instance method is a method invoked with respect to an instance of a class. Instance methods are often used to examine or modify the state of a particular object.
In Java, constructors are instance methods which have the same name as their class.
See also: class method, static method, instance, instance variable