Skip to content

Commit

Permalink
little fix
Browse files Browse the repository at this point in the history
  • Loading branch information
suqi committed Mar 1, 2016
1 parent 028d154 commit eabfe5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slots_magic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

在Python中,每个类都有实例属性。默认情况下Python用一个字典来保存一个对象的实例属性。这非常有用,因为它允许我们在运行时去设置任意的新属性。

然而,对于有着已知属性的小类来说,它可能是个瓶颈。这个字典浪费了很多内存。Python不能在对象创建时直接分配一个固定量的内存来保存所有的属性。因此如果你创建许多对象(我指的是万千上万个),它会消耗掉很多内存。
然而,对于有着已知属性的小类来说,它可能是个瓶颈。这个字典浪费了很多内存。Python不能在对象创建时直接分配一个固定量的内存来保存所有的属性。因此如果你创建许多对象(我指的是成千上万个),它会消耗掉很多内存。
不过还是有一个方法来规避这个问题。这个方法需要使用```__slots__```来告诉Python不要使用字典,而且只给一个固定集合的属性分配空间。

这里是一个使用与不使用```__slots__```的例子:
Expand Down Expand Up @@ -75,4 +75,4 @@ In [5] used 0.1758 MiB RAM in 0.12s, peaked 0.00 MiB above current, total RAM us

In [6]: from noslots import *
In [6] used 22.6680 MiB RAM in 0.80s, peaked 0.00 MiB above current, total RAM usage 47.95 MiB
```
```

0 comments on commit eabfe5d

Please sign in to comment.