C++11之线程库(Thread、Mutex、atomic、lock_guard、同步)

简介: C++11之线程库(Thread、Mutex、atomic、lock_guard、同步)

线程库C++11

在C++ 11引入了对多线程的支持。包括线程、互斥锁、原子操作、自动加减锁和同步。下面就分别介绍一下对应的用法。


线程Thread

线程:系统分配cup时间和调度的基本单位

头文件

#include<thread>

常用的成员函数

函数名 作用
get_id() 获取当前线程ID
join() 等待
detach() 分离


创建线程的方式

thread t1(函数地址);//无参

thread t2(函数地址,参数1,参数2,…);//有参

A a;

thread t3(&A::output,&a);成员函数,


全局函数实例:

#include <thread>
#include <string>
#include <iostream>
using namespace std;
void test1(string name)//子线程 有参
{
    for (int i = 0; i < 100; ++i)
    {
        cout << name <<  " test1:" << i << endl;
    }
}
void test2()//子线程
{
    for (int i = 0; i < 100; ++i)
    {
        cout << "test2:" << i << endl;
    }
}
int main()
{
    thread t1(test1, "线程1");//创建线程 并启动线程
    thread t2(test2);
    t1.join();//等待线程执行结束,不写会造成程序崩溃
    t2.join();
    return 0;
}


成员函数实例:

class A
{
public:
    void output(string name)
    {
        cout << "线程执行 " << name << endl;
    }
};
int main()
{
    A a;
    //格式:thread t1(函数地址 对象地址 参数1 参数2...)
    thread t1(&A::output, &a, "线程一");//成员函数做线程
    t1.join();
    return 0;
}


多线程的冲突问题

a. 出现了更高等级的指令

b. 该线程的时间片到了

互斥体Mutex

头文件

#include<mutex>

常用的成员函数

函数名 作用
lock() 加锁
unlock() 解锁


实例

#include <thread>
#include <string>
#include <iostream>
#include <mutex>
using namespace std;
int g_a = 0;
mutex g_m;//创建锁
void test3()
{
    for (int i = 0; i < 1000000; ++i)
    {
        //保证数据的完整性
        g_m.lock();//加锁
        g_a += 1;
        g_m.unlock();//解锁
    }
}
int main()
{
    thread t1(test3);
    thread t2(test3);
    thread t3(test3);
    t1.join();
    t2.join();
    t3.join();
    cout << g_a << endl;
    return 0;
}


原子操作Atomic

头文件

#include<atomic>

实例

#include <thread>
#include <iostream>
#include <atomic>
using namespace std;
atomic_int a;//将这个变量设置为int原子级别
void test3()
{
    for (int i = 0; i < 1000000; ++i)
    {
        ++a;//在执行过程中,等同于锁
    }
}
int main()
{
    thread t1(test3);
    thread t2(test3);
    thread t3(test3);
    t1.join();
    t2.join();
    t3.join();
    cout << a << endl;
    return 0;
}


自动加解锁lock_guard

在创建时调用构造函数自动加锁,出了作用域就调用析构函数解锁。

实例

#include <thread>
#include <string>
#include <iostream>
#include <mutex>
#include <atomic>
using namespace std;
int a = 0;
mutex g_m;//创建锁
void test3()
{
    for (int i = 0; i < 1000000; ++i)
    {
        lock_guard<mutex> la(g_m);//自动加锁 自动释放
        ++a;
        cout << a << endl;
    }
}
int main()
{
    thread t1(test3);
    thread t2(test3);
    thread t3(test3);
    t1.join();
    t2.join();
    t3.join();
    cout << a << endl;
    return 0;
}


同步

同步方式

  1. 信号量
  2. 事件
  3. 消息
  4. C++11中的条件变量

实例

#include <thread>
#include <string>
#include <iostream>
#include <mutex>
#include <atomic>
#include <string>
#include <condition_variable>
using namespace std;
string  buffer;
mutex m; 
condition_variable cv; //状态变量
//为了防止竞争,条件变量的使用总是和一个互斥锁结合在一起;
void workThread()
{
    //unique_lock比lock_guard灵活很多,效率上差一点,内存占用多一点。
    unique_lock<mutex> lk(m);
    cv.wait(lk);//等待信号
    cout << "收到数据:" << buffer << endl;
}
int main()
{
    thread t1(workThread);
    string name;
    cin >> name;
    buffer = name;
    cv.notify_all();//发出通知
    t1.join();
    cout << "数据处理完成" << endl;
    return 0;
}
目录
相关文章
|
5天前
|
并行计算 调度 C++
|
6天前
|
安全 Java 调度
C++从入门到精通:3.3多线程编程
C++从入门到精通:3.3多线程编程
|
7天前
|
监控 安全 Java
一文讲明白Java中线程与进程、并发与并行、同步与异步
一文讲明白Java中线程与进程、并发与并行、同步与异步
7 1
|
7天前
|
设计模式 安全 编译器
【代码片段】【C++】C++11线程安全单例模式
【代码片段】【C++】C++11线程安全单例模式
13 1
|
23天前
|
Java
Java中的多线程实现:使用Thread类与Runnable接口
【4月更文挑战第8天】本文将详细介绍Java中实现多线程的两种方法:使用Thread类和实现Runnable接口。我们将通过实例代码展示如何创建和管理线程,以及如何处理线程同步问题。最后,我们将比较这两种方法的优缺点,以帮助读者在实际开发中选择合适的多线程实现方式。
24 4
|
23天前
|
C++
C++语言多线程学习应用案例
使用C++ `std::thread`和`std::mutex`实现多线程同步。示例创建两个线程`t1`、`t2`,共享资源`shared_resource`,每个线程调用`increase`函数递增资源值。互斥锁确保在任何时候只有一个线程访问资源,防止数据竞争。最后输出资源总值。
9 1
|
28天前
|
安全 Java
Java中的并发编程:探索多线程同步与锁机制
在Java编程领域,多线程并发编程是一个重要而又复杂的话题。本文将深入探讨Java中的多线程同步与锁机制,包括synchronized关键字、ReentrantLock类以及java.util.concurrent包中的各种并发工具,帮助读者更好地理解和应用多线程编程技术。
8 1
|
1天前
|
监控 安全 Java
【多线程学习】深入探究阻塞队列与生产者消费者模型和线程池常见面试题
【多线程学习】深入探究阻塞队列与生产者消费者模型和线程池常见面试题
|
1天前
|
缓存 安全 Java
多线程--深入探究多线程的重点,难点以及常考点线程安全问题
多线程--深入探究多线程的重点,难点以及常考点线程安全问题
|
1天前
|
数据采集 安全 Java
Python的多线程,守护线程,线程安全
Python的多线程,守护线程,线程安全