What is the difference between a function decorated with @staticmethod and one decorated with @classmethod?
|
|
||||
|
|
|
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
|
|||||||||||||||||||||
|
|
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
With
Here, with a staticmethod, even though it is a method,
|
|||||||||||||||||||||
|
|
Basically |
||||
|
|
|
Official python docs:
|
||||
|
|
|
Here is a short article on this question
|
|||||||||||||
|
|
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 method (A function returning a different class depending on what argument it gets) you can do something like:
Also observe that this is a good example for using a classmethod and a static method, The static method clearly belongs to the class, since it uses the class Cluster internally. The classmethod only needs information about the class, and no instance of the object. |
||||
|
|
|
As a matter of fact,
|
|||||||||||||
|
|
I disagree that static methods are not useful, but I also use Python differently than most. It is being used as a scripting language for another piece of software and anything I write must be able to use a default python install, no custom modules allowed except for very specific circumstances. All my classes are in one file(ugh!!) and a utility class with random, unrelated static helper methods, mostly related to interacting with the software being extended, becomes extremely useful and helps clean up the code quite a bit. Doing "normal" Python programming, however, I never do use them and use modules. Best part about Python is how versatile it can be. The more creative you get, the more it seems it can do for you. |
|||
|
|
|
A quick hack-up ofotherwise identical methods in iPython reveals that For the sake of code readability I'd avoid |
|||||
|
protected by Jon Clements Jan 7 at 9:36
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
