Answers
通过@PyQt4.QtCore.pyqtSlot(str , str)装饰方法定义带有两个参数的槽函数
拆解出来就是messageSlot = QtCore.pyqtSlot(str, str)(messageSlot)
首先,QtCore.pyqtSlot(str, str)返回一个函数,假设为A
然后,函数再运行A(messageSlot)
Cyusii
answered 11 years, 2 months ago
通过@PyQt4.QtCore.pyqtSlot(str , str)装饰方法定义带有两个参数的槽函数
拆解出来就是messageSlot = QtCore.pyqtSlot(str, str)(messageSlot)
首先,QtCore.pyqtSlot(str, str)返回一个函数,假设为A
然后,函数再运行A(messageSlot)