ooooosh 发表于 2020-5-27 18:10:55

补充程序,请问装饰器怎么用?

class Person:
    ag=1
    (               ) #使用装饰器,以定义类方法
    def setweight(cls,v):
      (         ) #设置属性“ag”的值为v的值
x=Person()
v=int(input())
x.setweight(v)
x.ag=2
print(x.ag,Person.ag)

xiaosi4081 发表于 2020-5-27 18:12:01

????

qiuyouzhi 发表于 2020-5-27 18:14:05

class Person:
    ag=1
    @classmethod #使用装饰器,以定义类方法
    def setweight(cls,v):
      cls.ag = v #设置属性“ag”的值为v的值
x=Person()
v=int(input())
x.setweight(v)
x.ag=2
print(x.ag,Person.ag)

永恒的蓝色梦想 发表于 2020-5-27 18:18:37

楼上给出答案了。
所以以后能不能不要问这种垃圾问题了?

ooooosh 发表于 2020-5-27 18:21:43

永恒的蓝色梦想 发表于 2020-5-27 18:18
楼上给出答案了。
所以以后能不能不要问这种垃圾问题了?

网络自由,你可以选择没看见,谢谢

永恒的蓝色梦想 发表于 2020-5-27 18:23:00

ooooosh 发表于 2020-5-27 18:21
网络自由,你可以选择没看见,谢谢

所以赶紧给3L最佳啊
页: [1]
查看完整版本: 补充程序,请问装饰器怎么用?