温馨提示×

linux c++多线程如何用

小樊
81
2024-12-04 01:16:38
栏目: 编程语言

在 Linux 系统下使用 C++ 进行多线程编程,你可以使用 C++11 标准库中的 <thread> 头文件

  1. 包含头文件:
#include <iostream>
#include <thread>
  1. 创建一个函数,该函数将在新线程中运行:
void print_hello() {
    std::cout << "Hello from thread " << std::this_thread::get_id() << std::endl;
}
  1. main 函数中创建线程对象,并将要运行的函数作为参数传递:
int main() {
    // 创建线程对象,目标函数为 print_hello
    std::thread t(print_hello);

    // 等待线程完成
    t.join();

    return 0;
}
  1. 编译代码:

确保你的编译器支持 C++11 标准,并使用 -std=c++11 标志进行编译。例如,使用 g++ 编译器:

g++ -std=c++11 main.cpp -o main -pthread
  1. 运行程序:
./main

这将输出类似以下内容:

Hello from thread 1234567890

这是一个简单的多线程示例。你可以根据需要创建更多的线程,并在它们之间共享数据或进行同步。为了实现这些功能,你可以使用 <mutex><condition_variable><atomic> 等头文件。

0