instance method
Any method that is invoked with respect to an instance of a class. Also called simply a method. | ||||
Search Dictionary:
Instance method definition was found in categories: Encyclopedia(1)
Instance method Definition from Encyclopedia Dictionaries & Glossaries
| Wikipedia English - The Free Encyclopedia |
Method (computer science)
In object-oriented programming, the term method refers to a subroutine that is exclusively associated either with a class (called class methods, static methods, or factory methods) or with an object (called instance methods). Like a procedure in procedural programming languages, a method usually consists of a sequence of statements to perform an action, a set of input parameters to customize those actions, and possibly an output value (called return value) of some kind. The purpose of methods is to provide a mechanism for accessing (for both reading and writing) the private data stored in an object or a class.
| See more at Wikipedia.org... |
