up vote 65 down vote favorite
16
share [g+] share [fb]

Is it possible to have static methods in Python so I can call them without initializing a class, like:

ClassName.StaticMethod ( )
link|improve this question

feedback

3 Answers

up vote 95 down vote accepted

Yep, using the staticmethod decorator

class MyClass(object):
    @staticmethod
    def the_static_method(x):
        print x

MyClass.the_static_method(2) # outputs 2


A static method does not receive an implicit first argument. To declare a static method, use this idiom:

class C:
    @staticmethod
    def f(arg1, arg2, ...): ...

The @staticmethod form is a function decorator – see the description of function definitions in Function definitions for details.

It can be called either on the class (such as C.f()) or on an instance (such as C().f()). The instance is ignored except for its class.

Static methods in Python are similar to those found in Java or C++. For a more advanced concept, see classmethod().

For more information on static methods, consult the documentation on the standard type hierarchy in The standard type hierarchy.

New in version 2.2.

Changed in version 2.4: Function decorator syntax added.

link|improve this answer
2  
+1: Quote the documentation (^_^) – S.Lott Apr 10 '09 at 11:25
@dbr: Can I call one static method from another? – legesh Sep 6 '09 at 12:05
A very succinct and precise explanation. :) – Xolve Mar 7 '11 at 10:37
feedback

Yes, check out the staticmethod decorator:

>>> class C:
...     @staticmethod
...     def hello():
...             print "Hello World"
...
>>> C.hello()
Hello World
link|improve this answer
feedback

You don't really need to use the @staticmethod decorator. Just declaring a method (that doesn't expect the self parameter) and call it from the class. The decorator is only there in case you want to be able to call it from an instance as well (which was not what you wanted to do)

Mostly, you just use functions though...

link|improve this answer
Either this doesn't work, or it is not clear what you mean. I'll remove my downvote if a working example is posted. – Eric Wilson Jun 9 '11 at 19:18
It doesn't works.. please post a working example. – Yugal Jindle Sep 27 '11 at 11:10
Actually, I think he's right. It works for me using Python 3. – hwiechers Dec 3 '11 at 13:00
feedback

Your Answer

 
or
required, but never shown

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