Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While reading a book, i came across this statement:


The methods of an object define its behaviour. These methods are called instance methods. It is important to note that these methods pertain to each object of the class. This should not be confused with the implementation of the methods which is shared by all instances of the class.


I know what instance methods are, I know what static methods are (i.e. shared by all instances of the class). The above statement seem to suggest that the implementation of the methods is shared by all instances. What exactly does this mean? It doesnt sound like it is refering to static methods.

share|improve this question
It almost sounds like something intended to confuse, and to demonstrate the author's dazzling command of the minutiae of the specification language. But I think all he's trying to say is that the actual statements that comprise an instance method are shared by all objects, vs having a separate copy for each object instance. – Hot Licks Nov 24 '11 at 20:06

2 Answers

up vote 7 down vote accepted

It means that you don't get an extra copy of the code itself alongside each instance of the class. The behaviour is associated with an instance of the class, so it has that context, but there's no extra "per instance" price to pay in terms of memory etc for instance methods.

One quick point to note about static: I don't like the description of it being "shared by all instances of the class" as that suggests that if there aren't any instances, it's unusable. I prefer to say that it's associated with the class itself instead of a specific instance of the class.

share|improve this answer
Ok got it. Thanks. – ziggy Nov 24 '11 at 20:17

Instances share implementations, but implementations act on single instances.

  • "these methods pertain to each object of the class" - method acts on single instances.
  • "implementation of the methods which is shared by all instances" - there's only one implementation of the method.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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