windwos vscode使用线程库
时间: 2023-10-24 12:18:13 浏览: 102
windows 下的pthread 库
要在 Windows VS Code 中使用线程库,您需要包含 <thread> 头文件并使用 std::thread 类来创建线程。以下是一个简单的示例代码:
```c++
#include <iostream>
#include <thread>
void thread_func() {
std::cout << "Hello from thread!\n";
}
int main() {
std::thread t(thread_func);
t.join();
return 0;
}
```
在这个例子中,我们使用 std::thread 类创建了一个新的线程,该线程执行 thread_func() 函数。我们通过调用 t.join() 等待线程执行完毕。
请注意,您还需要将编译器选项设置为支持线程库。在 Visual Studio 中,您可以使用 /std:c++latest 编译器选项来启用 C++ 17 标准,并支持线程库。
阅读全文