Slots

Slots

Avoiding Dynamically Created Attributes
Computer Slots The attributes of objects are stored in a dictionary “dict”. Like any other dictionary, a dictionary used for attribute storage doesn’t have a fixed number of elements. In other words, you can add elements to dictionaries after they have been defined, as we have seen in our chapter on dictionaries. This is the reason, why you can dynamically add attributes to objects of classes that we have created so far:

class A(object):
… pass

a = A()
a.x = 66
a.y = “dynamically created attribute”
The dictionary containing the attributes of “a” can be accessed like this:

a.dict
{‘y’: ‘dynamically created attribute’, ‘x’: 66}
You might have wondered that you can dynamically add attributes to the classes, we have defined so far, but that you can’t do this with built-in classes like ‘int’, or ‘list’:

x = 42
x.a = “not possible to do it”
Traceback (most recent call last):
File “”, line 1, in
AttributeError: ‘int’ object has no attribute ‘a’

lst = [34, 999, 1001]
lst.a = “forget it”
Traceback (most recent call last):
File “”, line 1, in
AttributeError: ‘list’ object has no attribute ‘a’
Using a dictionary for attribute storage is very convenient, but it can mean a waste of space for objects, which have only a small amount of instance variables. The space consumption can become critical when creating large numbers of instances. Slots are a nice way to work around this space consumption problem. Instead of having a dynamic dict that allows adding attributes to objects dynamically, slots provide a static structure which prohibits additions after the creation of an instance.

When we design a class, we can use slots to prevent the dynamic creation of attributes. To define slots, you have to define a list with the name slots. The list has to contain all the attributes, you want to use. We demonstrate this in the following class, in which the slots list contains only the name for an attribute “val”.
class S(object):

__slots__ = ['val']

def __init__(self, v):
    self.val = v

x = S(42)
print(x.val)

x.new = “not possible”
If we start this program, we can see, that it is not possible to create dynamically a new attribute. We fail to create an attribute “new”:
42
Traceback (most recent call last):
File “slots_ex.py”, line 12, in
x.new = “not possible”
AttributeError: ‘S’ object has no attribute ‘new’
We mentioned in the beginning that slots are preventing a waste of space with objects. Since Python 3.3 this advantage is not as impressive any more. With Python 3.3 Key-Sharing Dictionaries are used for the storage of objects. The attributes of the instances are capable of sharing part of their internal storage between each other, i.e. the part which stores the keys and their corresponding hashes. This helps to reduce the memory consumption of programs, which create many instances of non-builtin types.
转载

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值