Difference between revisions of "Method"

From GNUstepWiki
Jump to navigation Jump to search
(Added links to instance object)
(Added to category Objective-C)
 
Line 12: Line 12:
  
 
Any method that can be used by an [[object#instance_object|instance of a class]] rather than by the [[object|class object]].
 
Any method that can be used by an [[object#instance_object|instance of a class]] rather than by the [[object|class object]].
 +
 +
 +
[[Category:Objective-C]]

Latest revision as of 09:43, 21 June 2006

A method is a procedure that can be executed by an object.

Class Method

A method that can be used by the class object rather than by instances of the class.

Factory Method

Same as class method.

Instance Method

Any method that can be used by an instance of a class rather than by the class object.