python slots用法

from types import MethodType


class Student:
    pass


class Teacher:
    __slots__ = ('name', 'age')  # 用tuple定义允许绑定的属性名称
    pass


def set_age(self, age):
    self.age = age


def set_score(self, score):
    self.score = score


if __name__ == '__main__':
    s = Student()
    s.name = 'Michael'  # 动态给实例绑定一个属性
    print(s.name)

    s.set_age = MethodType(set_age, s)
    s.set_age(25)
    print(s.age)
    # 给一个实例绑定的方法,对另一个实例是不起作用的,为了给所有实例都绑定方法,可以给class绑定方法
    Student.set_score = set_score
    s.set_score(100)
    print(s.score)

    s2 = Student()
    s2.set_score(99)
    print(s2.score)
    # 通常情况下,上面的set_score方法可以直接定义在class中,但动态绑定允许我们在程序运行的过程中动态给class加上功能,这在静态语言中很难实现。

    t = Teacher()
    t.name = 'Maria'
    t.age = 25
    t.score = 99

    # 由于'score'没有被放到__slots__中,所以不能绑定score属性,试图绑定score将得到AttributeError的错误。
    # 使用__slots__要注意,__slots__定义的属性仅对当前类实例起作用,对继承的子类是不起作用的

运行结果:

Michael
25
100
Traceback (most recent call last):
99
  File "/Users/pengshengbo01/baidu/python-learn/Advanced_Features.py", line 42, in <module>
    t.score = 99
AttributeError: 'Teacher' object has no attribute 'score'

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值