Difference between revisions of "Protocol"

From GNUstepWiki
Jump to navigation Jump to search
(Formal / Informal Protocol)
(added sort of a foreword)
Line 1: Line 1:
 +
A protocol is a  declaration of a group of methods not associated with any particular class.
 +
 
== Formal Protocols ==
 
== Formal Protocols ==
  

Revision as of 11:26, 31 August 2005

A protocol is a declaration of a group of methods not associated with any particular class.

Formal Protocols

Formal Protocols are used to define the Interface for a set of methods, but not the implementation or any data members.

This is useful for defining an interface which objects will need to conform to in order to take advantage of some service or other.

Example:

   @protocol MyFormalProtocol
   
   -(void) someMethod;
   -(id) someOtherMethod;
   
   @end


Informal Protocols

Informal Protocols are constructs that allow you to share a common Interface between two classes without them having to inherit from any specific object (the notable exception being NSObject).

They are generally made with a category on NSObject that has no implementation associated with it.

Example:

   @interface NSObject (MyInformalProtocol)
   
   - (id) someMethod;
   - (void) anotherMethod;
   
   @end