@staticmethod和@classmethod

Posted 寒星12345678999

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@staticmethod和@classmethod相关的知识,希望对你有一定的参考价值。

# coding:utf-8
class A(object):
    bar = 1
    def foo(self):
        print hello i am foo
    def myfoo(self):
        print hello i am myfoo

    @staticmethod
    def static_foo():
        print static_foo
        print A.bar

    @classmethod
    def class_foo(aabbcc):
        print class_foo
        print aabbcc.bar
        aabbcc().foo()

A.static_foo()
A.class_foo()
print "~~~~~~~~~~"
a = A()
a.foo()
a.myfoo()

static_foo
1
class_foo
1
hello i am foo
~~~~~~~~~~
hello i am foo
hello i am myfoo

 

 

参考

使用@staticmethod或@classmethod,就可以不需要实例化,直接类名.方法名()来调用。

以上是关于@staticmethod和@classmethod的主要内容,如果未能解决你的问题,请参考以下文章

`staticmethod` 和 `abc.abstractmethod`:会融合吗?

@staticmethod和@classmethod

@staticmethod 和 @property

当我需要在 python 编程中使用@staticmethod 和@classmethod 时? [复制]

类的静态方法@staticmethod

@classmethod和@staticmethod