117.info
人生若只如初见

如何在C++线程类中实现同步操作

在C++中,可以使用互斥锁(std::mutex)和条件变量(std::condition_variable)来实现线程间的同步操作。下面是一个简单的示例,展示了如何在C++线程类中实现同步操作:

#include
#include
#include 
#include

class ThreadSafeCounter {
public:
    ThreadSafeCounter() : value_(0) {}

    void increment() {
        std::unique_lock lock(mutex_);
        ++value_;
        condition_.notify_one(); // 通知等待的线程
    }

    void wait_until_equal(int target) {
        std::unique_lock lock(mutex_);
        condition_.wait(lock, [this, target] { return value_ == target; }); // 等待条件满足
    }

private:
    int value_;
    std::mutex mutex_;
    std::condition_variable condition_;
};

void worker(ThreadSafeCounter& counter, int target) {
    counter.increment();
    counter.wait_until_equal(target);
}

int main() {
    const int num_threads = 5;
    const int target = num_threads;
    ThreadSafeCounter counter;

    std::vector threads;
    for (int i = 0; i < num_threads; ++i) {
        threads.emplace_back(worker, std::ref(counter), target);
    }

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

    std::cout << "All threads finished."<< std::endl;
    return 0;
}

在这个示例中,我们创建了一个名为ThreadSafeCounter的类,它包含一个整数值、一个互斥锁和一个条件变量。increment()方法用于递增计数器的值,并在递增后通知等待的线程。wait_until_equal()方法用于等待计数器的值达到指定的目标值。

main()函数中,我们创建了5个线程,每个线程都会调用worker()函数。worker()函数首先调用increment()方法递增计数器的值,然后调用wait_until_equal()方法等待计数器的值达到5。当所有线程都完成时,程序将输出"All threads finished."。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe8eaAzsBAwBRBA.html

推荐文章

  • C++中如何实现进程池

    在C++中可以使用多线程库来实现进程池,以下是一个简单的进程池实现示例:
    #include #include #include #include #include #include #include class Thread...

  • C++中如何处理进程异常

    在C++中,可以使用try-catch语句块来处理进程异常。当程序运行时发生异常时,会抛出异常并在try块中寻找匹配的catch块来处理异常。
    示例代码如下:
    #i...

  • C++多进程编程的注意事项

    进程间通信:在多进程编程中,进程间通信非常重要。常用的进程间通信方式包括管道、信号、共享内存、消息队列等。开发者需要根据需求选择合适的方式来实现进程间...

  • C++中进程的同步与互斥如何实现

    在C++中,进程的同步与互斥通常通过线程的同步与互斥来实现。以下是一些常用的方法: 互斥锁(Mutex):互斥锁是最常用的同步机制之一,用于保护共享资源,确保同...

  • C++中如何创建自定义线程类

    在C++中,可以通过继承std::thread类来创建自定义线程类
    #include
    #include
    #include class CustomThread : public std::thread {
    public: ...

  • 如何将C++矩阵类与其他数据结构结合使用

    要将C++矩阵类与其他数据结构结合使用,首先需要创建一个矩阵类,定义一些基本操作(如初始化、访问元素、矩阵运算等) 首先,创建一个矩阵类: #include
    #...

  • C++矩阵类中如何实现矩阵的行列式计算

    在C++中,可以通过创建一个名为Matrix的类来实现矩阵的行列式计算。以下是一个简单的示例:
    #include
    #include class Matrix {
    public: // 构造函...

  • 如何使用C++矩阵类解决线性方程组

    要使用C++矩阵类解决线性方程组,首先需要创建一个矩阵类,然后利用高斯消元法或其他数值方法求解线性方程组 创建矩阵类: #include
    #include
    #includ...