当我激活QTimer
To Show A clock inside a时出现问题Qlabel
,我的小软件将使用大约 25% 到 40% 的 CPU 电源 (I3 4160) 那么如何解决它以减少硬件资源?
QTimer *timer1 = new QTimer(this);
connect(timer1,SIGNAL(timeout()),this,SLOT(showtime()));
timer1->start();
这是我的 showtime() 函数
void Findlistrecord::showtime(){
QTime time = QTime::currentTime();
QString time_totext = time.toString("hh : mm : ss");
ui->timelabel->setText(time_totext);
}