Objective-C: Class vs Instance Methods? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:06:03Z http://stackoverflow.com/feeds/question/1053592 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1053592/objective-c-class-vs-instance-methods 2 Objective-C: Class vs Instance Methods? Devoted 2009-06-27T20:48:43Z 2009-06-27T23:37:44Z <p>Hi, What's the difference between a class method and an instance method? Are instance methods the accessors (getters &amp; setters) while class methods are pretty much everything else? Thanks,</p> http://stackoverflow.com/questions/1053592/objective-c-class-vs-instance-methods/1053598#1053598 2 Answer by Bubbafat for Objective-C: Class vs Instance Methods? Bubbafat 2009-06-27T20:51:05Z 2009-06-27T20:51:05Z <p>An instance method applies to an instance of the class (i.e. an object) whereas a class method applies to the class itself.</p> <p>In C# a class method is marked static. Methods and properties not marked static are instance methods.</p> <pre><code>class Foo { public static void ClassMethod() { ... } public void InstanceMethod() { ... } } </code></pre> http://stackoverflow.com/questions/1053592/objective-c-class-vs-instance-methods/1053603#1053603 0 Answer by eduffy for Objective-C: Class vs Instance Methods? eduffy 2009-06-27T20:51:52Z 2009-06-27T20:51:52Z <p>Instances methods operate on instances of classes (ie, "objects"). Class methods are associated with classes (most languages use the keyword <code>static</code> for these guys).</p> http://stackoverflow.com/questions/1053592/objective-c-class-vs-instance-methods/1053610#1053610 1 Answer by hhafez for Objective-C: Class vs Instance Methods? hhafez 2009-06-27T20:57:19Z 2009-06-27T20:57:19Z <p>The answer to your question is not specific to objective-c, however in different languages, Class methods may be called static methods.</p> <p>The difference between class methods and static methods are</p> <p>Class methods</p> <ul> <li>Operate on Class variables (they can not access instance variables)</li> <li>Do not require an object to be instantiated to be applied</li> <li>Sometimes can be a code smell (some people who are new to OOP use as a crutch to do Structured Programming in an OO enviroment)</li> </ul> <p>Instance methods - Operate on instances variables and class variables - Must have an instanciated object to operate on</p> http://stackoverflow.com/questions/1053592/objective-c-class-vs-instance-methods/1053646#1053646 9 Answer by Cory Kilger for Objective-C: Class vs Instance Methods? Cory Kilger 2009-06-27T21:19:09Z 2009-06-27T21:19:09Z <p>Like most of the other answers have said, instance methods use an instance of a class, whereas a class method can be used with just the class name. In Objective-C they are defined thusly:</p> <pre><code>@interface MyClass : NSObject + (void)aClassMethod; - (void)anInstanceMethod; @end </code></pre> <p>They could then be used like so:</p> <pre><code>[MyClass aClassMethod]; MyClass *object = [[MyClass alloc] init]; [object anInstanceMethod]; </code></pre> <p>Some real world examples of class methods are the convenience methods on many Foundation classes like <code>NSString</code>'s <code>stringWithFormat:</code> or <code>NSArray</code>'s <code>arrayWithArray:</code>. An instance method would be <code>NSArray</code>'s <code>count</code> method.</p> http://stackoverflow.com/questions/1053592/objective-c-class-vs-instance-methods/1053722#1053722 0 Answer by micmoo for Objective-C: Class vs Instance Methods? micmoo 2009-06-27T21:57:06Z 2009-06-27T21:57:06Z <p>Like the other answers have said, instance methods operate on an object and has access to its instance variables, while a class method operates on a class as a whole and has no access to a particular instance's variables (unless you pass the instance in as a parameter).</p> <p>A good example of an class method is a counter-type method, which returns the total number of instances of a class. Class methods start with a +, while instance ones start with an -. For example:</p> <p>static int numberOfPeople = 0;</p> <pre><code>@interface MNPerson : NSObject { int age; //instance variable } + (int)population; //class method. Returns how many people have been made. - (id)init; //instance. Constructs object, increments numberOfPeople by one. - (int)age; //instance. returns the person age @end @implementation MNPerson - (id)init{ if (self = [super init]){ numberOfPeople++; age = 0; } return self; } + (int)population{ return numberOfPeople; } - (int)age{ return age; } @end </code></pre> <p>main.m:</p> <pre><code>MNPerson *micmoo = [[MNPerson alloc] init]; MNPerson *jon = [[MNPerson alloc] init]; NSLog(@"Age: %d",[micmoo age]); NSLog(@"%Number Of people: %d",[MNPerson population]); </code></pre> <p>Output: Age: 0 Number Of people: 2</p> <p>Another example is if you have a method that you want the user to be able to call, sometimes its good to make that a class method. For example, if you have a class called MathFunctions, you can do this:</p> <pre><code>+ (int)square:(int)num{ return num * num; } </code></pre> <p>So then the user would call: [MathFunctions square:34], <em>without ever having to instantiate the class!</em></p> <p>You can also use class functions for returning autoreleased objects, like NSArray's </p> <pre><code>+ (NSArray *)arrayWithObject:(id)object </code></pre> <p>That takes an object, puts it in an array, and returns an autoreleased version of the array that doesn't have to be memory managed, great for temperorary arrays and what not.</p> <p>I hope you now understand when and/or why you should use class methods!!</p>