Qt_multi_threads:Qt最简单的多线程,开启了两个完全独立的子线程,主线程睡眠都不影响

时间:2024-03-26 13:42:03
【文件属性】:

文件名称:Qt_multi_threads:Qt最简单的多线程,开启了两个完全独立的子线程,主线程睡眠都不影响

文件大小:3KB

文件格式:ZIP

更新时间:2024-03-26 13:42:03

C++

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


【文件预览】:
Qt_multi_threads-main
----qthread_2.pro(587B)
----my_th.cpp(1KB)
----README.md(1KB)
----main.cpp(861B)
----my_th.h(420B)

网友评论