当前位置: 代码迷 >> QT开发 >> connect返回为true,可是乃是不执行槽函数
  详细解决方案

connect返回为true,可是乃是不执行槽函数

热度:215   发布时间:2016-04-25 02:58:15.0
connect返回为true,可是就是不执行槽函数
类的构造函数中:

 bool a = connect(this,SIGNAL(helpRequested()),this,SLOT(show_help()));
 qDebug()<<"123"<<a;

debug结果为: 123 true
我在槽函数(show_help())的开头添加debug
可是就是没有输出,谁知道这是什么原因?
------解决思路----------------------
你在类的某个地方调用“emit helpRequested()”了吗。
  相关解决方案