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,
|
feedback
|
|
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:
They could then be used like so:
Some real world examples of class methods are the convenience methods on many Foundation classes like | |||||||||||||
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:
main.m:
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:
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
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!! | |||||||
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.
| |||||||||
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
Instance methods
| ||||
|
feedback
|
|
Instances methods operate on instances of classes (ie, "objects"). Class methods are associated with classes (most languages use the keyword | |||
|
feedback
|
|
Class methods are usually used to create instances of that class For example, | ||||
|
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?
or
Which is somehow "better"? (And without writing the actual 'removeVowels" code... what would the 2 different methods look like?) | |||||||
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. | |||
|
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
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 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
With the class method, you could get away with 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. In this case the instance likely calls the class method, so both are available. i.e.
basically, 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. | |||
|
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. | |||
|
feedback
|