Okay, let's see...
I was suddenly wondering why do we have non-static functions/methods? A method isn't a property of an object (like an attribute/data member) and all instances of that class use the same method, so why is there a differentiation between static and non-static methods?
The key to note is it is a conceptual difference. An instance method is "associated" with a particular object when it is invoked -- it has some form of "this" context -- while a static method is not.
Does this mean when an object is instantiated it holds a copy of the methods - which are the exact same for all instances of that class?
It depends on language, but generally no.
In Java, for instance, there is only one copy of a method shared for all instances of the class. Methods are not "part" of the data for instances of the class. In JavaScript one can get this sharing by using the [[prototype]] chain or, to a lesser extent, by reusing the same function-object for the same method in different instances. (However, one can also create a new method for each new instance in JavaScript, but that's a programmer's choice.)
In Java a "message" is sent to invoke an instance method; that is, it looks at a particular type and sends it the message along with the appropriate "this" instance. (This is more complex than this due to virtual dispatching, but... the key to note is there is only one copy of a method for a particular type is loaded into memory.)
In JavaScript a method is a first-class value (it is an object) that is named via a property of the object (or found in the [[prototype]]) that is dynamically bound to the receiver (that is, the "this" inside is established based on how it is called). Python works similar to JavaScript in that methods are first-class functions that are fetched and invoked (but methods are still "bound" to a class, which is unlike JavaScript). Ruby works more like Java in that "messages are sent" which in turn invokes a method (which is not a first-class value in Ruby) and implicitly associates the context to the receiver. All of these languages support various forms of "subclassing" (call it what you may) to adjust the MRO and share methods common to instances.
The method is the same for every object, just a different object invokes the method, so why do we need to make the method part of the object?? Why can't the method just be stored once (like a static method) and then when using "this" we execute on the relevant object?? It seems silly to store non-static methods are part of the object, for every instance.
This is what many language do -- including Java, C++, Python (usually) and Ruby (usually) and JavaScript (often), and it is a very valid point to conserve memory and overhead.
Happy coding!
staticwould be... shocking. B) – rynah Apr 14 '12 at 0:29