Python Slots Example

Posted By admin On 19/03/22

Def slotmethod (self): print('slot method called.' ) def init (self): super(Dialog, self).init button=QPushButton('Click') button.clicked.connect(self.slotmethod) mainLayout = QVBoxLayout mainLayout.addWidget(button) self.setLayout(mainLayout) self.setWindowTitle('Button Example - pythonspot.com') if name 'main': app = QApplication(sys.argv).

  1. Python Slots Example Crossword Clue
  2. Monty Python Slots
  3. Python Slots Example Java
Python老鸟都应该看过那篇非常有吸引力的 Saving 9 GB of RAM with Python’s __slots__ 文章,作者使用了__slots__让内存占用从25.5GB降到了16.2GB。在当时来说,这相当于用一个非常简单的方式就降低了30%的内存使用,着实惊人。作者并没有提到他的业务特点和代码,那我们就基于《fluent python》中的例子来验证下是不是有这么厉害:
  • Book: Create Desktop Apps with Python PyQt5. The program below has a start and stop button. If you click the start button, it starts a QTimer. Use the connected slot function to display the current time, with the system’s current time on the label.
  • Just for completeness of my notes, note that there is a one-time cost per slot in the class's namespace of 64 bytes in Python 2, and 72 bytes in Python 3, because slots use data descriptors like properties, called 'members'.

我们分别跑一下这2个类:

2种方法初始内存略有差别,但是由于这个差别和总内存量相比太小而忽略不计,结论就是:

使用slots可以让内存使用减少3.5倍!!# 通过 (200 - 4) / ((60 - 4) * 1.0) 计算得来

那么用slot就是非非常那个有必要吗?事实上500000个实例这种机会非常少见,用不用完全根据业务来决定,并不要以偏概全。因为(敲黑板了哈)使用__slots__也是有副作用的:

Python Slots Example Crossword Clue

第三点有点难理解,我写个例子看看吧:

所以实例不超过万级别的类,__slots__是不太值得使用的。

PS:《fluent python》比我狠,说的是小于百万级别实例不值得使用。

无耻的广告:《Python Web开发实战》上市了!

Monty Python Slots

Python

Python Slots Example Java

欢迎关注本人的微信公众号获取更多Python相关的内容(也可以直接搜索「Python之美」):