开发平台(Platform): (Ex: Win10, Linux, ...)
win10
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
vs2015
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
qt5.7
问题(Question):
void PC_info::setupTimer(){
timer = new QTimer(0);
connect(timer,SIGNAL(timeout(),this,SLOT(OnScan()),Qt::DirectConnection));
timer->start(1000);
//thread = new QThread(this);
//timer ->moveToThread(thread);
//thread->start();
}
大家好 目前在写定时扫电脑资讯的程式
OnScan是去扫HWinfo关于电脑的资讯
但是进到OnScan的时候 会让整个ui出现顿感
后来使用QThread来写的时候 顿感解决
但....会有机率性的让ui整个冻结
不知道是不是thread的用法错误了呢