up vote 55 down vote favorite
32
share [g+] share [fb]

What's the difference between a class method and an instance method? Are instance methods the accessors (getters & setters) while class methods are pretty much everything else? Thanks,

link|improve this question

feedback

10 Answers

up vote 111 down vote accepted

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:

@interface MyClass : NSObject

+ (void)aClassMethod;
- (void)anInstanceMethod;

@end

They could then be used like so:

[MyClass aClassMethod];

MyClass *object = [[MyClass alloc] init];
[object anInstanceMethod];

Some real world examples of class methods are the convenience methods on many Foundation classes like NSString's +stringWithFormat: or NSArray's +arrayWithArray:. An instance method would be NSArray's -count method.

link|improve this answer
1  
Good answer. It's also worth noting that you'll see a particular shorthand notation for describing methods. For example, +[NSString stringWithFormat:] is the class method +stringWithFormat: on NSString; -[NSArray objectAtIndex:] is an instance method. Methods with multiple selector parts are written like -[NSMutableDictionary setObject:forKey:] etc. You'll often see this notation in Cocoa responses, documentation, and in Xcode. – Quinn Taylor Jun 27 '09 at 23:29
8  
I would add that a class method is called a "static" method in many other languages. And to answer the original question, accessors are instance methods because they are setting and getting the state of a specific instance. In the above example, NSArray count returns the number of objects in a specific instance. – Brian Pan Jan 14 '11 at 5:59
"whereas a class method can be used with just the class name." or the class object – user102008 Jul 22 '11 at 22:00
Very simple and smart answer. Thank you. – Umair Khan Jadoon Oct 27 '11 at 18:34
feedback

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).

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:

static int numberOfPeople = 0;

@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

main.m:

MNPerson *micmoo = [[MNPerson alloc] init];
MNPerson *jon = [[MNPerson alloc] init];
NSLog(@"Age: %d",[micmoo age]);
NSLog(@"%Number Of people: %d",[MNPerson population]);

Output: Age: 0 Number Of people: 2

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:

+ (int)square:(int)num{ 
      return num * num;
}

So then the user would call: [MathFunctions square:34], without ever having to instantiate the class!

You can also use class functions for returning autoreleased objects, like NSArray's

+ (NSArray *)arrayWithObject:(id)object

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.

I hope you now understand when and/or why you should use class methods!!

link|improve this answer
1  
micmoo, might I suggest you put the "static int numberOfPeople = 0;" in code formatted text? I was confused until I noticed it above the sample code. Other than that, a really concise answer. – mobibob Feb 19 '10 at 3:31
Oops, didn't see that! Thanks! – micmoo Feb 19 '10 at 6:53
feedback

An instance method applies to an instance of the class (i.e. an object) whereas a class method applies to the class itself.

In C# a class method is marked static. Methods and properties not marked static are instance methods.

class Foo {
  public static void ClassMethod() { ... }
  public void InstanceMethod() { ... }
}
link|improve this answer
Argh - sorry, I just noticed this was an Obj-C question. Hopefully my answer still applies but please vote down or vote to delete. – Bubbafat Jun 27 '09 at 20:52
3  
No harm done. The first part of your answer is correct as a general OOP principle, and it definitely applies to Objective-C. You can add "objective-c" to your list of tags to ignore if you don't want to see such questions, although any participation is certainly welcome. :-) – Quinn Taylor Jun 27 '09 at 23:21
+1. PHP has the same logic. – Fedir Oct 4 '11 at 21:54
feedback

The answer to your question is not specific to objective-c, however in different languages, Class methods may be called static methods.

The difference between class methods and instance methods are

Class methods

  • Operate on Class variables (they can not access instance variables)
  • Do not require an object to be instantiated to be applied
  • 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)

Instance methods

  • Operate on instances variables and class variables
  • Must have an instanciated object to operate on
link|improve this answer
feedback

Instances methods operate on instances of classes (ie, "objects"). Class methods are associated with classes (most languages use the keyword static for these guys).

link|improve this answer
feedback

Class methods are usually used to create instances of that class

For example, [NSString stringWithFormat:@"SomeParameter"]; returns an NSString instance with the parameter that is sent to it. Hence, because it is a Class method that returns an object of its type, it is also called a convenience method.

link|improve this answer
feedback

Now that we all know WHAT they are... now the big question:

So when does Apple (or me, or anyone) choose to use a CLASS METHOD instead of an INSTANCE METHOD?

NSString *myString = @"this is only a test";
s = [MyClass removeVowels:myString];

or

s = [myString removeVowels];

Which is somehow "better"?

(And without writing the actual 'removeVowels" code... what would the 2 different methods look like?)

link|improve this answer
1  
I agree, that is the question, and voted you towards the black, as a result.. I guess your haters want you to pose a new question... Lame. – alex gray Nov 17 '11 at 1:06
Or to extend the idea even further: removeVowels should probably be an extension category of NSString rather than in MyClass at all. – Bill Dec 6 '11 at 3:25
feedback

Class methods can't change or know the value of any instance variable. That should be the criteria for knowing if an instance method can be a class method.

link|improve this answer
feedback

Take for example a game where lots of cars are spawned.. each belongs to the class CCar. When a car is instantiated, it makes a call to

[CCar registerCar:self]

So the CCar class, can make a list of every CCar instantiated. Let's say the user finishes a level, and wants to remove all cars... you could either: 1- Go through a list of every CCar you created manually, and do whicheverCar.remove(); or 2- Add a removeAllCars method to CCar, which will do that for you when you call [CCar removeAllCars]. I.e. allCars[n].remove();

Or for example, you allow the user to specify a default font size for the whole app, which is loaded and saved at startup. Without the class method, you might have to do something like

fontSize = thisMenu.getParent().fontHandler.getDefaultFontSize();

With the class method, you could get away with [FontHandler getDefaultFontSize].

As for your removeVowels function, you'll find that languages like C# actually have both with certain methods such as toLower or toUpper.

e.g. myString.removeVowels() and String.removeVowels(myString) (in ObjC that would be [String removeVowels:myString]).

In this case the instance likely calls the class method, so both are available. i.e.

public function toLower():String{
  return String.toLower();
}

public static function toLower( String inString):String{
 //do stuff to string..
 return newString;
}

basically, myString.toLower() calls [String toLower:ownValue]

There's no definitive answer, but if you feel like shoving a class method in would improve your code, give it a shot, and bear in mind that a class method will only let you use other class methods/variables.

link|improve this answer
feedback

Also remember, the same idea applies to variables. You will come across terms like static, member, instance, class and so on when talking about variables the same as you would for methods/functions.

It seems the common term in the Obj-C community is ivar for instance variable, but I am not an Obj-C guy, yet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.