1

以下代码有效:

connect(ui.pushButton, SIGNAL(clicked()), this, SLOT(myMemberFunction()));

另一个没有:

connect(ui.pushButton, SIGNAL(clicked()), this, SLOT(this->myMemberFunction()));

为什么?

4

1 回答 1

7

SLOT() 宏编写了一个可以调用的函数(作为函数指针)来传递插槽,它使用参数作为名称,它本身不是函数调用。

于 2012-11-25T20:02:29.823 回答