例如,我将 QPushButton 的“点击”信号连接到名为“func_with_return”的函数。假设这个函数中只有三个语句:第一个是'print('start')',第二个是'return 1',最后一个是'print('end')'。我有基于 PyQt5 的 python 代码。
import sys
from PyQt5.QtWidgets import QApplication, QFrame, QPushButton
class MyWindow(QFrame):
def __init__(self):
super(MyWindow, self).__init__()
self.layout_init()
self.layout_manage()
def layout_init(self):
self.setFixedSize(800, 600)
self.button01 = QPushButton('click!', self)
self.button01.setFixedSize(100, 100)
self.button01.clicked.connect(self.func_with_return)
def layout_manage(self):
pass
def func_with_return(self):
print('---------func_with_return starts---------')
return 1
print('---------func_with_return ends---------')
if __name__ == '__main__':
app = QApplication(sys.argv)
mywindow = MyWindow()
mywindow.show()
sys.exit(app.exec_())
基本上点击这个按钮后没有报错。我很好奇的是“槽”内的“返回”引起的中断。这个中断会不会和signal&slot机制发生冲突?