c++ 线程

在 C++ 中,std::thread 构造函数可以用于将参数传递给线程。这里是一个基本的示例,展示了如何使用 std::thread 来传递参数:

cpp 复制代码
#include <iostream>
#include <thread>

// 定义一个被线程调用的函数
void threadFunc(int arg1, double arg2, std::string arg3) {
    std::cout << "arg1: " << arg1 << ", arg2: " << arg2 << ", arg3: " << arg3 << std::endl;
}

int main() {
    // 创建一个线程,并传递参数
    std::thread t(threadFunc, 1, 3.14, "Hello, World!");

    // 等待线程结束
    t.join();

    return 0;
}

在这个例子中,定义了一个函数 threadFunc,它接受三个参数。然后在 main 函数中创建了一个线程,并将这三个参数传递给了 threadFunc

如果函数参数是引用类型,可以使用 std::refstd::cref 来传递引用:

cpp 复制代码
#include <iostream>
#include <thread>
#include <functional> // std::ref 和 std::cref 需要这个头文件

// 定义一个被线程调用的函数
void threadFunc(int &arg1, double &arg2, std::string &arg3) {
    std::cout << "arg1: " << arg1 << ", arg2: " << arg2 << ", arg3: " << arg3 << std::endl;
}

int main() {
    int arg1 = 1;
    double arg2 = 3.14;
    std::string arg3 = "Hello, World!";

    // 创建一个线程,并传递参数引用
    std::thread t(threadFunc, std::ref(arg1), std::ref(arg2), std::ref(arg3));

    // 等待线程结束
    t.join();

    return 0;
}

在这个例子中,使用 std::ref 来传递变量的引用,这样就可以在 threadFunc 中修改这些变量的值。

std::refstd::cref 是 C++11 引入的,用于在函数绑定或异步函数调用中引用成员函数或者非成员函数。这些函数主要在多线程中使用,目的是在函数调用中保持对象的引用,而不是复制对象。

std::refstd::cref 的使用

  1. std::ref :
    std::ref 用于在函数绑定或异步函数调用中引用非 const 对象。例如:

    cpp 复制代码
    std::thread t(func, std::ref(myObj));
  2. std::cref :
    std::cref 类似于 std::ref,但它用于引用 const 对象。例如:

    cpp 复制代码
    std::thread t(func, std::cref(myObj));

这两个函数都定义在 <functional> 头文件中,因此在使用它们之前,必须包含这个头文件。

多线程示例

以下是一个示例,展示了如何使用 std::threadstd::promise 进行线程同步:

cpp 复制代码
#include <iostream>
#include <thread>
#include <future>
#include <string>

int main() {
    std::promise<std::string> promise;
    std::future<std::string> future = promise.get_future();

    std::thread t([&promise] {
        std::string s = "hello";
        std::this_thread::sleep_for(std::chrono::seconds(1));
        promise.set_value(s);
    });

    t.join();
    std::string value = future.get();
    std::cout << value << std::endl;

    return 0;
}

使用信号量的多线程示例

下面是一个使用信号量和互斥锁进行线程同步的示例:

cpp 复制代码
#include <iostream>
#include <thread>
#include <vector>
#include <mutex>
#include <semaphore.h>

std::mutex mtx;
sem_t sem;
int counter = 0;

void increment_counter(int id) {
    sem_wait(&sem);
    std::lock_guard<std::mutex> lock(mtx);
    std::this_thread::sleep_for(std::chrono::milliseconds(100));
    counter++;
    std::cout << "Thread " << id << " incremented counter to " << counter << std::endl;
    sem_post(&sem);
}

void read_counter(int id) {
    sem_wait(&sem);
    std::lock_guard<std::mutex> lock(mtx);
    std::this_thread::sleep_for(std::chrono::milliseconds(100));
    std::cout << "Thread " << id << " read counter value " << counter << std::endl;
    sem_post(&sem);
}

int main() {
    sem_init(&sem, 0, 5);

    std::vector<std::thread> threads;
    for (int i = 0; i < 10; ++i) {
        if (i % 2 == 0) {
            threads.push_back(std::thread(increment_counter, i));
        } else {
            threads.push_back(std::thread(read_counter, i));
        }
    }

    for (auto &thread : threads) {
        thread.join();
    }

    sem_destroy(&sem);

    return 0;
}

在这个示例中,使用了信号量和互斥锁来控制对共享资源 counter 的访问。这样可以确保多个线程安全地访问和修改共享资源。

相关推荐
芊寻(嵌入式)2 分钟前
C转C++学习笔记--基础知识摘录总结
开发语言·c++·笔记·学习
獨枭3 分钟前
C++ 项目中使用 .dll 和 .def 文件的操作指南
c++
霁月风6 分钟前
设计模式——观察者模式
c++·观察者模式·设计模式
橘色的喵7 分钟前
C++编程:避免因编译优化引发的多线程死锁问题
c++·多线程·memory·死锁·内存屏障·内存栅栏·memory barrier
一颗松鼠10 分钟前
JavaScript 闭包是什么?简单到看完就理解!
开发语言·前端·javascript·ecmascript
有梦想的咸鱼_12 分钟前
go实现并发安全hashtable 拉链法
开发语言·golang·哈希算法
海阔天空_201318 分钟前
Python pyautogui库:自动化操作的强大工具
运维·开发语言·python·青少年编程·自动化
天下皆白_唯我独黑25 分钟前
php 使用qrcode制作二维码图片
开发语言·php
夜雨翦春韭28 分钟前
Java中的动态代理
java·开发语言·aop·动态代理
小远yyds30 分钟前
前端Web用户 token 持久化
开发语言·前端·javascript·vue.js