python-静态属性

Posted benchdog

tags:

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

@property的作用是:直接运行被装饰的函数,不能带参数,表面上看就是在被装饰的函数后面直接加括号。

class Room:
    tag=1
    def __init__(self,name,owner,width,length,heigh):
        self.name=name
        self.owner=owner
        self.width=width
        self.length=length
        self.heigh=heigh

    @property
    def cal_area(self):
        # print(‘%s 住的 %s 总面积是%s‘ % (self.owner,self.name, self.width * self.length))
        return  self.width * self.length

    @classmethod
    def tell_info(cls,x):
        print(cls)
        print(--》,cls.tag,x)#print(‘--》‘,Room.tag)
    # def tell_info(self):
    #     print(‘---->‘,self.tag)

    @staticmethod
    def wash_body(a,b,c):
        print(%s %s %s正在洗澡 %(a,b,c))

    def test(x,y):
        print(x,y)

# Room.wash_body(‘张三‘,‘李四‘,‘王五‘)

print(Room.__dict__)


r1=Room(卧室,张三,100,100,100000)

print(r1.__dict__)
# r1.wash_body(‘张三‘,‘李四‘,‘王五‘)

# Room.test(1,2)
# r1.test(1,2)

 

以上是关于python-静态属性的主要内容,如果未能解决你的问题,请参考以下文章

python面度对象(属性,类方法,静态方法)

30 段 Python 实用代码

片段内部静态类和gradle问题

python 属性,类方法和静态方法

Python高级语法-对象实例对象属性-类与实例,class方法静态方法等(4.6.1)

即学即用的 30 段 Python 实用代码