What is the difference between a function decorated with @staticmethod and one decorated with @classmethod?
|
feedback
|
|
A staticmethod is a method that knows nothing about the class or instance it was called on. It just gets the arguments that were passed, no implicit first argument. It is basically useless in Python -- you can just use a module function instead of a staticmethod. A classmethod, on the other hand, is a method that gets passed the class it was called on, or the class of the instance it was called on, as first argument. This is useful when you want the method to be a factory for the class: since it gets the actual class it was called on as first argument, you can always instantiate the right class, even when subclasses are involved. Observe for instance how
| |||||||||||||||||||||
feedback
|
|
Maybe a bit of example code will help: Notice the difference in the call signatures of
Below is the usual way an object instance calls a method. The object instance,
With classmethods, the class of the object instance is implicitly passed as the first argument instead of
You can also call
One use people have found for class methods is to create inheritable alternative constructors. With staticmethods, neither
foo is just a function, but when you call a.foo you don't just get the function,
you get a "curried" version of the function with the object instance
With
Here, with a staticmethod, even though it is a method,
| |||||||||||||||
feedback
|
|
Basically @classmethod makes a method whose first argument is the class it's called from (rather than the class instance), @staticmethod does not have any implicit arguments. | ||||
|
feedback
|
|
Here is a short article on this question
| |||||||||||
feedback
|
|
Official python docs:
| |||
|
feedback
|
|
I just wanted to add that the @decorators were added in python 2.4. If you're using python < 2.4 you can use the classmethod() and staticmethod() function. For example, if you want to create a factory function. (A function returning a different class depending on what argument it gets) you can do something like:
| |||
|
feedback
|
|
As a matter of fact,
| |||||||||||
feedback
|
|
In the lecture Advanced Python or Understanding Python, (also on YouTube), Thomas Wouters says, 43 minutes in, that classmethods are very useful, but that staticmethods are generally not, except when injecting external functions into classes, to prevent them becoming methods. | |||||
feedback
|