Difference between revisions of "Method"

From GNUstepWiki
Jump to navigation Jump to search
(Added Remote Method)
(Removed Remote Method, was supposed to be Remote Message... :-})
Line 12: Line 12:
  
 
Any method that can be used by an instance of a class rather than by the [[object|class object]].
 
Any method that can be used by an instance of a class rather than by the [[object|class object]].
 
== Remote Method ==
 
 
A message sent from one [[application]] to an [[object]] in another [[application]].
 

Revision as of 08:56, 3 November 2005

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.