Difference between revisions of "Category"

From GNUstepWiki
Jump to navigation Jump to search
 
(fixed link)
Line 3: Line 3:
 
The obvious advantage is that all classes that inherit from the original class would automagically also inherit the additions of your category.
 
The obvious advantage is that all classes that inherit from the original class would automagically also inherit the additions of your category.
  
One disadvantage is that a category cannot add [[instance_variable]]s.
+
One disadvantage is that a category cannot add [[instance_variable|Instance variables]].

Revision as of 14:22, 30 August 2005

Categories let you extend the behaviour of a class without having to subclass it.

The obvious advantage is that all classes that inherit from the original class would automagically also inherit the additions of your category.

One disadvantage is that a category cannot add Instance variables.