0
在這樣的代碼:當光標在SIGNAL括號寫按鈕事件QT智能感知問題
#include <QApplication>
#include <QPushButton>
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QPushButton *button = new QPushButton("Button Text");
QObject::connect(button,SIGNAL(clicked()),&app,SLOT(quit()));
button->show();
return app.exec();
}
智能感知正在出現。但是在SLOT括號中不會出現app方法嗎?
是它與應用前&性格有關係嗎?