关于Qt在新线程中创建定时器的问题
想在新创建的线程中定义一个100ms的定时器,一旦timeout就调用槽函数发送网络数据但成功启动线程后从未跳入槽函数,为什么鸟?代码大致如下://.h文件#includ...
想在新创建的线程中定义一个100ms的定时器,一旦timeout就调用槽函数发送网
络数据
但成功启动线程后从未跳入槽函数,为什么鸟?
代码大致如下:
// .h文件
#include<QThread>
#include<QTimer>
class NewThread : public QThread
{
public:
NewThread();
QTimer *m_timer;
private slots:
void sSend();
}
// .cpp文件
#include ".h"
NewThread::NewThread()
{
m_timer = new QTimer(this);
}
NewThread::run()
{
m_timer->start(100);
connect(m_timer, SIGNAL(timeout()), this, SLOT(sSend()));
while(1)
{
Sleep(1);
}
}
NewThread::sSend()
{
...
} 展开
络数据
但成功启动线程后从未跳入槽函数,为什么鸟?
代码大致如下:
// .h文件
#include<QThread>
#include<QTimer>
class NewThread : public QThread
{
public:
NewThread();
QTimer *m_timer;
private slots:
void sSend();
}
// .cpp文件
#include ".h"
NewThread::NewThread()
{
m_timer = new QTimer(this);
}
NewThread::run()
{
m_timer->start(100);
connect(m_timer, SIGNAL(timeout()), this, SLOT(sSend()));
while(1)
{
Sleep(1);
}
}
NewThread::sSend()
{
...
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询