dd21
December 5, 2022
class MyThread : public QThread { protected: void run() { /* 线程的相关代码 */ } };
Thread *thread = new Thread; thread->start();