想用qt写个控制台的小程序,想先测试一下,控制台有消息循环,但是怎么连接信号和槽呢??
#include <QCoreApplication>
#include <QDebug>
#include <QTimer>
void fupdate()
{
qDebug() << "2333\n";
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
qDebug() << "test" << endl;
QTimer stimer;
QObject::connect(&stimer, SIGNAL(timeout()), this , SLOT(fupdate()));
stimer.start(1000);
return a.exec();
}
编译提示this不存在
自定义带Q_OBJECT的类又编译不过
求dalao帮忙,,,,研究了一个下午了