目前涉及到的主要有两种:
1、每隔一段时间执行
QTimer *timer =
new
QTimer(
this
);
connect(timer, SIGNAL(timeout()),
this
, SLOT(update()));
timer->start(1000); // 1秒
QTimer::singleShot(200, this, SLOT(update())); // 200ms
目前涉及到的主要有两种:
1、每隔一段时间执行
QTimer *timer =
new
QTimer(
this
);
connect(timer, SIGNAL(timeout()),
this
, SLOT(update()));
timer->start(1000); // 1秒
QTimer::singleShot(200, this, SLOT(update())); // 200ms
上一篇:git下载指定的版本
Qt定时器:QObject类的定时器和定时器类QTimer。
毫秒级定时器#include publi...
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M