阅读量:0
在C++ WinForm程序中实现多线程可以使用std::thread
库来创建新的线程。下面是一个简单的示例代码:
#include <Windows.h> #include <thread> #include <iostream> void foo() { for (int i = 0; i < 10; i++) { std::cout << "Thread 1: " << i << std::endl; Sleep(1000); } } void bar() { for (int i = 0; i < 10; i++) { std::cout << "Thread 2: " << i << std::endl; Sleep(1500); } } int main() { std::thread t1(foo); std::thread t2(bar); t1.join(); t2.join(); return 0; }
在这个示例中,我们通过创建foo
和bar
两个函数来分别作为两个线程的入口函数。然后使用std::thread
库创建t1
和t2
两个线程对象,并分别将foo
和bar
函数作为参数传入。最后通过调用join
函数等待线程执行完成。
需要注意的是,多线程编程需要注意线程间的同步和互斥,避免出现数据竞争和其他并发问题。在实际应用中需要仔细设计多线程之间的通信机制和数据共享方式。