使用__slots__

Posted Gringer

tags:

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

1、python支持动态给类和实例增加属性和方法;
2、python __slots__只能限制实例的属性及方法,对于类则没有影响,对于子类则更是没有限制。
3、如果该类有父类,也要在父类设置__slots__才能限制。

class Student(object):
    __slots__ = (‘name‘, ‘age‘, ‘set_age‘, ‘score‘)
    pass

s = Student()

# 动态给实例增加属性
s.name = ‘Michael‘
print(s.name)

# 动态给实例增加方法和属性
def set_age(self, age):
    self.age = age

from types import MethodType
s.set_age = MethodType(set_age, s)
s.set_age(25)
print(s.age)

# 动态给类增加属性
Student.gender = ‘male‘
print(Student.gender)
print(s.gender)

# 动态给类增加方法和属性
def set_score(self, score):
    self.score = score

Student.set_score = set_score
s.set_score(66)
print(s.score)

  

以上是关于使用__slots__的主要内容,如果未能解决你的问题,请参考以下文章

Vue_(组件通讯)使用solt分发内容

python、__slots__ 和“属性是只读的”

面对对象之特殊变量__slot__ | Python

__slots__ 的使用?

python元编程之实现定制类--使用描述符,__slots__,__new__篇

Python3 __slots__