Python中的静态方法

我在Python中使用静态方法,如下所示:


class A(object):


    @staticmethod

    def sfun():

        print "this is statice method"


class AA(A):


    @staticmethod

    def sfun():

        print "this is statice method"

我想在sfun中获得类的类型(A或AA)。我该怎么做?


吃鸡游戏
浏览 145回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python