类的构造函数中:
bool a = connect(this,SIGNAL(helpRequested()),this,SLOT(show_help()));
qDebug()<<"123"<<a;
debug结果为: 123 true
我在槽函数(show_help())的开头添加debug
可是就是没有输出,谁知道这是什么原因?
------解决思路----------------------
你在类的某个地方调用“emit helpRequested()”了吗。
bool a = connect(this,SIGNAL(helpRequested()),this,SLOT(show_help()));
qDebug()<<"123"<<a;