【发布时间】:2011-06-17 07:58:47
【问题描述】:
我是 QT 新手。我有一个从小部件扩展的类,例如:
class myclass: public Qwidget
{
Q_OBJECT
public:
void myfunction(int);
slots:
void myslot(int)
{
//Here I want to put myfunction into a thread
}
...
}
我不知道该怎么做。请帮帮我。
【问题讨论】:
标签: multithreading qt