码迷,mamicode.com
首页 > 编程语言 > 详细

Python类中的魔法方法之 __slots__

时间:2019-08-26 11:35:05      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:很多   ict   ini   print   pytho   int   而且   对象   init   

在类中每次实例化一个对象都会生产一个字典来保存一个对象的所有的实例属性,这样非常的有用处,可以使我们任意的去设置新的属性。

每次实例化一个对象python都会分配一个固定大小内存的字典来保存属性,如果对象很多的情况下会浪费内存空间。

可通过__slots__方法告诉python不要使用字典,而且只给一个固定集合的属性分配空间

class Foo(object):
    __slots__ = ("x","y","z")

    def __init__(self,x,y):
        self.x = x
        self.y = y
        self.z = None

    def tell_info(self,name):
      return  getattr(self,name)

c = Foo(10,20)
# 设置和获取__slots__中设置的可访问实例属性
print(c.tell_info("x"))      # 结果:10

c.z=50
print(c.tell_info("z"))  # 结果:50

# 设置一个不在__slots__中存在的属性,会报错
c.e = 70    # AttributeError: ‘Foo‘ object has no attribute ‘e‘

# 访问对象.__dict__ 也会直接报错
print(c.__dict__) # AttributeError: ‘Foo‘ object has no attribute ‘__dict__‘

Python类中的魔法方法之 __slots__

标签:很多   ict   ini   print   pytho   int   而且   对象   init   

原文地址:https://blog.51cto.com/12643266/2432560

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!