vote up 3 vote down star

PHP classes can use the keyword "self" in a static context, like this:

<?php
class Test {
  public static $myvar = 'a';
  public static function t() {
     echo self::$myvar; // generically reference the current class
     echo Test::$myvar; //same thing, but not generic
  }
}
?>

Obviously I can't use "self" in this way in Python because "self" refers not to a class but to an instance. So is there a way I can reference the current class in a static context in python, similar to php's "self"?

I guess what I'm trying to do is rather un-pythonic. Not sure though, I'm new to python. Here is my code (using Django framework):

class Friendship(models.Model):
  def addfriend(self, friend):
    """does some stuff"""

  @staticmethod # declared "staticmethod", not "classmethod"
  def user_addfriend(user, friend): # static version of above method
    userf = Friendship(user=user) # creating instance of the current class
    userf.addfriend(friend) # calls above method

# later ....
Friendship.user_addfriend(u, f) # works

My code works as expected. I just wanted to know if there was a keyword I could use on the first line of the static method instead of "Friendship". This way if the class name changes, the static method won't have to be edited.. As it stands the static method would have to be edited if the class name changes...

flag

50% accept rate
when I try to use self.__class__ inside a static method, I get global name 'self' is not defined – Eddified Apr 10 at 18:42
Are you still passing "self" to the method? Remember that "self" is a parameter name, not a keyword. – Andrew Hare Apr 10 at 18:44
@Eddified: that probably should have been a comment on the answer, not the question – David Apr 10 at 18:47
Please post the Python code that isn't working. – S.Lott Apr 10 at 18:53

2 Answers

vote up 6 vote down check

This should do the trick:

class C(object):
    my_var = 'a'

    @classmethod
    def t(cls):
        print cls.my_var

C.t()
link|flag
Easy to understand, was perfectly analogous to the php example. Works for me. Thanks! – Eddified Apr 10 at 19:14
vote up 11 vote down

In all cases, self.__class__ is an object's class.

http://docs.python.org/library/stdtypes.html#special-attributes

In the (very) rare case where you are trying to mess with static methods, you actually need classmethod for this.

class AllStatic( object ):
    @classmethod
    def aMethod( cls, arg ):
        # cls is the owning class for this method 

x = AllStatic()
x.aMethod( 3.14 )
link|flag
Am I supposed to be passing "self" to a static function? @staticmethod def blah(): ... – Eddified Apr 10 at 18:52
No you're not. A static method in general doesn't need any arguments. – David Apr 10 at 19:08

Your Answer

Get an OpenID
or

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