Qt_multi_threads Qt最简单的多线程,开启了两个完全独立的子线程,主线程睡眠都不影响。 1依赖 QT += concurrent #include //要记得添加该头文件 2:用法 1类声明 class my_qth { public: int img=0; int result1; int result2; void f1(); void f2(); void star1();//要做的耗时间函数1 void star2();//要做的耗时间函数2 void star_all(); }; 2类函数实现 void my_qth::f1() { qDebug()<<"f1_id___###"<<QThread::currentThreadId(); int tmp=i