编写一段 qt6 多个线程之间通讯的代码
时间: 2023-03-13 14:18:47 浏览: 157
12.1 Qt5多线程:多线程及简单实例
Qt6 提供了一个叫做 QThread 的类,可以用来让多线程之间进行通讯。下面是一段示例代码,可以用来实现多线程间的通讯:// 在线程 1 中
QThread thread1;
// 将线程 2 作为参数传入
thread1.start(thread2);
// 等待线程 2 完成
thread1.wait();
// 在线程 2 中
QThread thread2;
// 将线程 1 作为参数传入
thread2.start(thread1);
// 等待线程 1 完成
thread2.wait();
阅读全文