码迷,mamicode.com
首页 > 编程语言 > 详细

Qt5 自定义线程下使用定时器

时间:2020-06-28 00:11:22      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:消息循环   out   消息   rect   bug   线程   不能   this   timer   

前提事项:
1.new QTimer()时不能加this
2.子线程中添加 exec();,启动子线程的本地消息循环

//创建子线程
mytimer* timer = new mytimer; timer->start(); qDebug()<<"111";
//核心
m_timer = new QTimer(); connect(m_timer,&QTimer::timeout,this,&mytimer::timeoout,Qt::DirectConnection); m_timer->start(1000); exec();

Qt5 自定义线程下使用定时器

标签:消息循环   out   消息   rect   bug   线程   不能   this   timer   

原文地址:https://www.cnblogs.com/xiangyangcao/p/13200520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!