• C++ 11:多线程相关问题


    目录

    一. 线程类thread

    1.1 thread的一些接口函数

    2.2 通过thread创建多线程

    二. this_thread

    三. 互斥锁与原子操作

    3.1 多线程中的加锁与解锁

    3.1.1 mutex类

    3.1.2 lock_guard 类

    3.3 原子性操作

    四. 条件变量

    4.1 线程互斥的缺陷

    4.2 condition_variable 实现线程同步

    五. 单例模式的线程安全问题

    5.1 饿汉模式的线程安全问题

    5.2 懒汉模式的线程安全问题

    六. 智能指针的线程安全问题

    七. 总结


    一. 线程类thread

    1.1 thread的一些接口函数

    接口函数实现功能
    thread() noexcept默认构造函数,创建空线程

    template

    thread thread(Fn&& fn, Args&& ...args)

    通过指定函数和传给函数的参数,来创建线程,其中fn为线程函数,fn的返回类型应为void,如果希望向线程函数中传递引用x,应当使用std::ref(x)来传参
    thread(thread&& th)移动构造函数(线程类thread禁止拷贝构造)
    thread& operator=(thread&& th)移动赋值函数(线程类thread禁止拷贝赋值)
    void join()阻塞等待线程
    void detach()分离线程

    代码1.1通过创建子线程的方式,使用线程函数对main函数作用域中的变量count进行100次++操作,join线程后输出此时count的值。注意,要在线程函数内部控制外部的变量,就要传引用,而向线程函数串引用必须通过std::ref()传参。

    运行代码输出结果为count = 100,表明引用传参成功。

    代码1.1:创建线程并向线程函数传递引用类型参数

    1. #include <iostream>
    2. #include <thread>
    3. void add(int& x)
    4. {
    5. for (int i = 0; i < 100; ++i)
    6. {
    7. ++x;
    8. }
    9. }
    10. int main()
    11. {
    12. int count = 0;
    13. // 创建线程,线程函数为add
    14. // std::ref(add)传递引用
    15. std::thread th(add, std::ref(count));
    16. th.join();
    17. std::cout << "count = " << count << std::endl;
    18. return 0;
    19. }

    如代码1.2所示,我们还可以将线程函数以lambda表达式的格式来传递,lambda表达式可以很方便的以值或引用的方式捕捉父作用域的变量。

    代码1.2:以lambda表达式的方式传递线程函数

    1. #include <iostream>
    2. #include <thread>
    3. int main()
    4. {
    5. int count = 0;
    6. std::thread th([&]() {
    7. for(int i = 0; i < 100; ++i)
    8. {
    9. ++count;
    10. }
    11. });
    12. th.join();
    13. std::cout << "count = " << count << std::endl;
    14. return 0;
    15. }

    2.2 通过thread创建多线程

    只要在主线程中,通过thread构造函数创建多个线程类对象,并且执行特定的线程函数,就能够创建出多线程场景,为了方便控制,我们先创建std::vector,让vector先存储一些列由默认构造函数创建出来的thread类对象,然后通过for循环移动赋值,来让thread运行起特定的线程函数。代码2.3通过thread创建了4个子线程,并通过vector存储和管理每个thread对象。

    注意:thread对象只能支持移动赋值,不支持拷贝赋值!

    代码2.3:通过thread类创建多线程

    1. #include <iostream>
    2. #include <thread>
    3. #include <string>
    4. #include <vector>
    5. #include <Windows.h>
    6. const int g_thread_num = 4; // 子线程数
    7. // 线程函数
    8. void threadRoutine(std::string name)
    9. {
    10. while (true)
    11. {
    12. std::cout << name << std::endl;
    13. Sleep(1);
    14. }
    15. }
    16. int main()
    17. {
    18. std::vector<std::thread> vth(4);
    19. // 通过移动赋值创建子线程,执行threadRoutine函数
    20. for (int i = 0; i < g_thread_num; ++i)
    21. {
    22. std::string name("Thread ");
    23. name += std::to_string(i + 1);
    24. vth[i] = std::thread(threadRoutine, name); // 移动赋值
    25. }
    26. // 线程等待
    27. for (int i = 0; i < g_thread_num; ++i)
    28. {
    29. vth[i].join();
    30. }
    31. return 0;
    32. }

    二. this_thread

    C++标准库内定义命名空间std::this_thread,表2.1为其中包含的四个多线程相关的函数。

    函数名称函数功能
    void yield() noexcept让出时间片,CPU资源让给其他线程
    thread::id get_id()获取当前线程的线程id

    void sleep_for(chrono::duration& real_time)

    线程休眠特定时间
    void sleep_until(chrono::time_points& abs_time)线程休眠到指定时间

    一般来说,极少使用sleep_until,而是使用sleep_for,sleep_for可以指定休眠时长的单位为:小时、分钟、秒、微秒、毫秒、纳秒等,图2.1为sleep_for支持的时长单位,代码2.1中演示了yield、sleep_for和get_id的使用方法。

    图2.1 sleep_for支持的时间单位

    代码2.1:对this_thread中定义的函数的使用

    1. #include <iostream>
    2. #include <thread>
    3. #include <Windows.h>
    4. int main()
    5. {
    6. bool ready = false;
    7. std::thread th([&ready]() {
    8. // ready为false,该线程就让出时间片
    9. while (!ready)
    10. {
    11. std::this_thread::yield();
    12. }
    13. std::cout << "线程开始执行" << std::endl;
    14. // 线程休眠0.5秒(500微秒)
    15. std::this_thread::sleep_for(std::chrono::milliseconds(500));
    16. // 打印线程id
    17. std::cout << "Thread id: " << std::this_thread::get_id() << std::endl;
    18. });
    19. // 主线程先执行3秒,然后才更改ready为true,运行线程th获取时间片
    20. for (int i = 0; i < 3; ++i)
    21. {
    22. std::cout << "main thread" << std::endl;
    23. Sleep(1000);
    24. }
    25. ready = true;
    26. th.join();
    27. return 0;
    28. }

    三. 互斥锁与原子操作

    3.1 多线程中的加锁与解锁

    加锁,是保证多线程场景下线程安全的一种手段,因为多个线程可能同时访问到临界资源,这就可能引发不可预料的结果。对访问临界资源的临界区代码加锁,就可以保证同一时刻只有一个线程的执行流进入临界区访问临界资源,从而保证线程安全。

    代码3.1是一种典型的线程不安全的场景,共有4个线程对全局变量count执行++操作,每个线程执行10000次++,当四个线程都退出时,我们希望count的值变为40000,然而实际运行的结果确远小于40000,并且每次运行的结果各不相同,这就是由于多线程执行流同时访问临界资源而引发的线程不安全问题。加锁可以避免上面的问题。

    代码3.1:多线程访问临界资源引发线程不安全问题

    1. #include <iostream>
    2. #include <thread>
    3. #include <vector>
    4. #include <Windows.h>
    5. int count = 0;
    6. int g_thread_num = 4;
    7. void add()
    8. {
    9. for (int i = 0; i < 10000; ++i)
    10. {
    11. ++count;
    12. }
    13. }
    14. int main()
    15. {
    16. std::vector<std::thread> vth(4);
    17. // 创建线程
    18. for (int i = 0; i < g_thread_num; ++i)
    19. {
    20. vth[i] = std::thread(add);
    21. }
    22. // 等待线程
    23. for (int i = 0; i < g_thread_num; ++i)
    24. {
    25. vth[i].join();
    26. }
    27. std::cout << "count = " << count << std::endl;
    28. return 0;
    29. }

    3.1.1 mutex类

    接口函数功能
    mutex()默认构造函数
    mutex(const mutex& mtx) = delete禁止拷贝构造
    void lock()加锁
    void unlock()解锁

    对于代码3.1,如果我们对访问临界资源的代码++count进行加锁操作,那么就限制了某一时刻只能有一个执行流执行++count操作,这样就保证了线程安全,运行结果一定是count = 40000。

    代码3.2:对临界资源加锁

    1. #include <iostream>
    2. #include <thread>
    3. #include <vector>
    4. #include <mutex>
    5. int count = 0;
    6. int g_thread_num = 4;
    7. void add(std::mutex& mtx)
    8. {
    9. for (int i = 0; i < 10000; ++i)
    10. {
    11. mtx.lock(); // 加锁
    12. ++count;
    13. mtx.unlock(); // 解锁
    14. }
    15. }
    16. int main()
    17. {
    18. std::mutex mtx;
    19. std::vector<std::thread> vth(4);
    20. // 创建线程
    21. for (int i = 0; i < g_thread_num; ++i)
    22. {
    23. // 通过引用的方式,将互斥锁传递给线程函数
    24. vth[i] = std::thread(add, std::ref(mtx));
    25. }
    26. // 等待线程
    27. for (int i = 0; i < g_thread_num; ++i)
    28. {
    29. vth[i].join();
    30. }
    31. std::cout << "count = " << count << std::endl;
    32. return 0;
    33. }

    3.1.2 lock_guard 类

    原型:template lock_guard { }

    如果采用lock()、unlock()的加锁和解锁方式,在lock和unlock之间抛异常,或者忘记调用unlock解锁,那么都有可能出现锁无法释放,造成死锁、执行流阻塞的问题。而采用lock_guard则可以很好的避免上面的问题,lock_guard在构造的时候会自动加锁,在离开作用域的时候由编译器自动调用其析构函数解锁

    • lock_guard构造函数原型:explicit lock_guard(mutex_type& mtx)。
    • lock_guard不允许拷贝构造:lock_guard(const lock_guard& lock) = delete。

    代码3.3将代码3.2中的lock和unlock改为lock_guard的格式,来保证访问临界资源的安全性。

    代码3.3:通过lock_guard实现加锁和解锁

    1. int count = 0;
    2. int g_thread_num = 4;
    3. void add(std::mutex& mtx)
    4. {
    5. for (int i = 0; i < 10000; ++i)
    6. {
    7. // 通过构造lock_guard类来加锁
    8. std::lock_guard<std::mutex> lock(mtx);
    9. ++count;
    10. } // 出作用域自动调用lock_guard的析构函数来解锁
    11. }
    12. int main()
    13. {
    14. std::mutex mtx;
    15. std::vector<std::thread> vth(4);
    16. // 创建线程
    17. for (int i = 0; i < g_thread_num; ++i)
    18. {
    19. // 通过引用的方式,将互斥锁传递给线程函数
    20. vth[i] = std::thread(add, std::ref(mtx));
    21. }
    22. // 等待线程
    23. for (int i = 0; i < g_thread_num; ++i)
    24. {
    25. vth[i].join();
    26. }
    27. std::cout << "count = " << count << std::endl;
    28. return 0;
    29. }

    3.3 原子性操作

    原理性操作的概念:某个操作只有两种状态,要么完成,要么还没开始,不存在完成一部分的中间状态。如果我们对临界资源访问或修改的操作是原子的,那么就是线程安全的。

    C++内置atomic类,调用其接口函数,可以实现对指针或整型数据的原子性操作。

    • 对于整型数据intergal,atomic可以原子的实现以下操作:+=、-=、&=、|=、^= 。
    • 对于指针类型数据pointer,atomic可以原子的实现以下操作:+=、-= 。
    • atomic还支持原子的实现operator++、operator--操作。

    代码3.4在3.3的基础上继续进行修改,定义std::atomic count = 0,这样线程函数中的++count就变为了原子性操作,也就保证了线程的安全性。如果线程函数中执行 count += val、count -= val等操作,也是线程安全的。

    代码3.4:通过atomic实现原子性操作

    1. #include <iostream>
    2. #include <thread>
    3. #include <vector>
    4. #include <atomic>
    5. // 通过atmoic,让针对count的操作变为原子的
    6. std::atomic<int> count = 0;
    7. int g_thread_num = 4;
    8. void add()
    9. {
    10. for (int i = 0; i < 10000; ++i)
    11. {
    12. count++;
    13. }
    14. }
    15. int main()
    16. {
    17. std::vector<std::thread> vth(4);
    18. // 创建线程
    19. for (int i = 0; i < g_thread_num; ++i)
    20. {
    21. // 通过引用的方式,将互斥锁传递给线程函数
    22. vth[i] = std::thread(add);
    23. }
    24. // 等待线程
    25. for (int i = 0; i < g_thread_num; ++i)
    26. {
    27. vth[i].join();
    28. }
    29. std::cout << "count = " << count << std::endl;
    30. return 0;
    31. }

    四. 条件变量

    4.1 线程互斥的缺陷

    如代码4.1所示,在多线程场景下,在线程函数中,仅仅是通过lock、unlock对临界区进行加锁和解锁,还要在临界区检查临界资源是否就绪,此时不加以其他限制,就可能存在这样的问题:(1). 单个函数频繁申请到锁,造成其他线程的饥饿问题。(2). 如果临界资源长时间不就绪,那么频繁的进行 加锁 -> 检测临界资源是否就绪 -> 解锁 操作,会造成线程资源的浪费。

    为了解决代码4.1的问题,线程同步被引入,线程同步是指让多个线程按照特定的次序被调度以及访问临界资源,如果检测到临界资源不就绪,线程就挂起等待。通过控制条件变量的等待和唤醒,可以实现线程的同步。

    代码4.1:存在缺陷的线程互斥代码

    1. #include <iostream>
    2. #include <thread>
    3. #include <mutex>
    4. #include <vector>
    5. #include <Windows.h>
    6. int count = 0;
    7. bool ready = false;
    8. const int g_thread_num = 4;
    9. void threadRoutine(std::mutex& mtx)
    10. {
    11. while (true)
    12. {
    13. // 通过lock_guard控制加锁解锁
    14. std::lock_guard<std::mutex> lock(mtx);
    15. if (ready) // 检查临界资源的就绪情况
    16. {
    17. ++count;
    18. std::cout << "[" << std::this_thread::get_id() << "]" << "count: " << count << std::endl;
    19. }
    20. std::this_thread::sleep_for(std::chrono::milliseconds(500));
    21. }
    22. }
    23. int main()
    24. {
    25. std::mutex mtx;
    26. std::vector<std::thread> vth(g_thread_num);
    27. // 创建线程
    28. for (int i = 0; i < g_thread_num; ++i)
    29. {
    30. vth[i] = std::thread(threadRoutine, std::ref(mtx));
    31. }
    32. Sleep(3000);
    33. ready = true; // 主线程休眠3s才让临界资源就绪
    34. // 等待线程
    35. for (int i = 0; i < g_thread_num; ++i)
    36. {
    37. vth[i].join();
    38. }
    39. return 0;
    40. }

    4.2 condition_variable 实现线程同步

    通过定义condition_variable对象,调用等待条件变量、唤醒条件变量等方法,可以控制线程按照指定顺序运行,同时避免频繁检查临界资源是否就绪造成线程资源的浪费。

    表4.1 condition_variable的主要接口函数
    函数原型功能
    conditional_variable( )默认构造函数
    conditional_variable(const conditional_variable&) = delete禁止拷贝构造
    void wait(unique_lock& lck, predicate pred) 等待条件变量
    void notify_one() 唤醒一个等待条件变量的线程
    void notify_all()唤醒等待条件变量的全部线程

    其中,wait的底层实现为:while(!prev) { 等待条件变量... } 

    代码4.2创建了3个线程,通过检测主线程中定义的int ready的值,控制线程的等待条件变量和唤醒,来让线程运行的顺序为3、2、1,实现线程的同步。

    代码4.2:通过条件变量控制线程运行的顺序

    1. #include <iostream>
    2. #include <thread>
    3. #include <mutex>
    4. #include <vector>
    5. #include <Windows.h>
    6. int main()
    7. {
    8. volatile int ready = 3;
    9. std::mutex mtx;
    10. std::condition_variable cv;
    11. // 线程1
    12. std::thread th1([&]() {
    13. while (true)
    14. {
    15. std::unique_lock<std::mutex> lock(mtx);
    16. // 检查临界资源是否就绪
    17. cv.wait(lock, [&ready]() { return ready == 1; });
    18. std::cout << "thread 1" << std::endl;
    19. ready = 3;
    20. std::this_thread::sleep_for(std::chrono::milliseconds(300));
    21. cv.notify_all(); // 唤醒一个线程
    22. }
    23. });
    24. std::thread th2([&]() {
    25. while (true)
    26. {
    27. std::unique_lock<std::mutex> lock(mtx);
    28. // 检查临界资源是否就绪
    29. cv.wait(lock, [&ready]() { return ready == 2; });
    30. std::cout << "thread 2" << std::endl;
    31. ready = 1;
    32. std::this_thread::sleep_for(std::chrono::milliseconds(300));
    33. cv.notify_all(); // 唤醒一个线程
    34. }
    35. });
    36. std::thread th3([&]() {
    37. while (true)
    38. {
    39. std::unique_lock<std::mutex> lock(mtx);
    40. // 检查临界资源是否就绪
    41. cv.wait(lock, [&ready]() { return ready == 3; });
    42. std::cout << "thread 3" << std::endl;
    43. ready = 2;
    44. std::this_thread::sleep_for(std::chrono::milliseconds(300));
    45. cv.notify_all(); // 唤醒一个线程
    46. }
    47. });
    48. th1.join();
    49. th2.join();
    50. th3.join();
    51. return 0;
    52. }

    五. 单例模式的线程安全问题

    5.1 饿汉模式的线程安全问题

    饿汉模式,是指在程序开始运行(进入到main函数)之前,就创建好单例对象,饿汉模式的优点和缺点如下:

    • 优点:(1). 实现和调用较为方便  (2). 更容易保证线程安全 -- 主要针对单例类实例化时的线程安全问题,如果涉及到临界资源的访问,还是要通过加锁的方式保证线程安全
    • 缺点:(1). 单例类实例化,延缓软件启动速度  (2). 存在多个单例类时无法确定实例化顺序。

    我们可以认为,如果我们仅考虑单例类对象本身的实例化,饿汉模式是线程安全的。

    代码5.1:饿汉模式实现单例类

    1. class singleton
    2. {
    3. public:
    4. static singleton _inst; // 唯一一个实例化对象
    5. // 禁止拷贝和赋值
    6. singleton(const singleton& st) = delete;
    7. singleton& operator=(const singleton& st) = delete;
    8. private:
    9. // 构造函数
    10. singleton(int s = 10) : _s(s)
    11. { }
    12. int _s;
    13. };
    14. singleton singleton::_inst; // 实例化唯一一个类对象

    5.2 懒汉模式的线程安全问题

    懒汉模式,就是第一次使用单例对象时才实例化,懒汉模式的优缺点如下:

    • 优点:(1). 不延缓软件的启动速度  (2). 如果有多个单例对象可以控制实例化的顺序
    • 缺点:(1). 设计复杂  (2). 保证线程安全相对困难

    一般来说,懒汉模式的实现方法是在singleton中定义指向singleton堆区对象的指针_ptr,初值设为nullptr并提供GetInstance函数获取指向单例对象的指针,第一次调用GetInstance会检测到_ptr为空指针,此时会new出一个singleton对象,那么我们可能会写出代码5.2,这并不是线程安全的!

    如果有两个线程同时进入 if(ptr == nullptr) 内部,那么new singleton就会被调用两次,引发线程不安全问题。

    代码5.2:线程不安全的懒汉单例模式

    1. #include
    2. class singleton
    3. {
    4. public:
    5. static singleton* GetInstance(int s = 10)
    6. {
    7. // 线程不安全
    8. // 如果多个线程同时进入if内部,则会实例化出多份singleton对象
    9. if (_pinst == nullptr)
    10. {
    11. _pinst = new singleton(s);
    12. }
    13. return _pinst;
    14. }
    15. int get_s() { return _s; }
    16. private:
    17. singleton(int s) // 构造函数私有化
    18. : _s(s)
    19. { }
    20. int _s;
    21. // 指向单例对象的指针,初值设为nullptr
    22. // 第一次调用后改变为指向堆区singleton单例对象的指针
    23. static singleton* _pinst;
    24. };

    为了确保线程安全,我们必须对临界区代码(访问singleton *_pinst的代码)进行加锁,这样,我们就会写出如代码5.3所示的懒汉模式单例类,这个单例类在构造的时候是线程安全的。但是,这样的代码依旧存在缺陷,单例对象在创建成功后_pinst的值永远为nullptr,此时判断_pinst==nullptr是否成立是线程安全的,在if(_pinst == nullptr) { ... } 前后加锁解锁,会造成不必要的资源浪费

    代码5.3:能保证线程安全,但存在缺陷的懒汉单例模式

    1. #include <iostream>
    2. #include <mutex>
    3. class singleton
    4. {
    5. public:
    6. static singleton* GetInstance(int s = 10)
    7. {
    8. // 如果单例类已经创建,频繁加锁解锁会造成资源浪费
    9. _mtx.lock(); // 加锁
    10. if (_pinst == nullptr)
    11. {
    12. _pinst = new singleton(s);
    13. }
    14. _mtx.unlock();
    15. return _pinst;
    16. }
    17. int get_s() { return _s; }
    18. private:
    19. singleton(int s) // 构造函数私有化
    20. : _s(s)
    21. { }
    22. int _s;
    23. // 指向单例对象的指针,初值设为nullptr
    24. // 第一次调用后改变为指向堆区singleton单例对象的指针
    25. static singleton* _pinst;
    26. static std::mutex _mtx; // 互斥锁
    27. };
    28. singleton* singleton::_pinst = nullptr; // 静态成员初值设为空
    29. std::mutex singleton::_mtx; // 互斥锁初始化

    代码5.4在5.3的基础上进一步修改,在GetInstance函数的执行流进入到了if(_pinst == nulptr) { ... }内部时,才进行加锁解锁,并在if内部加锁与解锁之间再次判断_pinst==nullptr是否成立,如果依旧成立,说明确实没有singleton对象被实例化出来,此时再new单例对象,并返回指向堆区单例对象的指针。

    这样版的GetInstance函数内部执行双层if判断_pinst == nullptr是否成立,外层判断是为了保证有一个单例对象被创建出来,内层判断前后要进行加锁和解锁操作,为了确保在由多个执行流进入外层if的情况下不出现线程安全问题。

    代码5.4:双重 if(_pinst == nullptr) 判断实现线程安全的懒汉单例模式

    1. #include <iostream>
    2. #include <mutex>
    3. class singleton
    4. {
    5. public:
    6. static singleton* GetInstance(int s = 10)
    7. {
    8. // 外层if确保有一个单例对象被实例化出来
    9. if (_pinst == nullptr)
    10. {
    11. // 内层if判断确保多执行流进入外层if
    12. // 不会出现实例化出多个singleton对象的问题,以确保线程安全
    13. _mtx.lock();
    14. if (_pinst == nullptr)
    15. {
    16. _pinst = new singleton(s);
    17. }
    18. _mtx.unlock();
    19. }
    20. // 双层if判断,可以防止在GetInstance频繁被调用的场景下
    21. // 每次都进行加锁和解锁,造成线程资源的浪费
    22. return _pinst;
    23. }
    24. int get_s() { return _s; }
    25. private:
    26. singleton(int s) // 构造函数私有化
    27. : _s(s)
    28. { }
    29. int _s;
    30. // 指向单例对象的指针,初值设为nullptr
    31. // 第一次调用后改变为指向堆区singleton单例对象的指针
    32. static singleton* _pinst;
    33. static std::mutex _mtx; // 互斥锁
    34. };
    35. singleton* singleton::_pinst = nullptr; // 静态成员初值设为空
    36. std::mutex singleton::_mtx; // 互斥锁初始化

    六. 智能指针的线程安全问题

    以最常用的智能指针shared_ptr为例,shared_ptr允许多个RAII对象指向同一份资源,通过底层的引用计数器,来保证在没有shared_ptr对象指向内部资源时相关的资源可以被析构

    智能指针shared_ptr底层的引用计数器为共享资源,对于拷贝构造、赋值等需要访问引用计数器的相关操作,如不加锁,会引发线程不安全问题。代码6.1为线程安全版本的shared_ptr模拟实现,在使用引用计数器的时候,都会进行加锁和解锁处理。

    注意:C++标准库中提供的shared_ptr保证拷贝构造和赋值是线程安全的,但是对于其所指向资源的访问和修改,需要用户自行加锁来保证线程安全。

    代码6.2:线程安全的shared_ptr模拟实现

    1. #include <iostream>
    2. #include <mutex>
    3. #include <vector>
    4. namespace zhang
    5. {
    6. template<class T>
    7. class shared_ptr
    8. {
    9. public:
    10. // 构造函数
    11. shared_ptr(T* ptr = nullptr)
    12. : _ptr(ptr)
    13. , _pcount(new int(1))
    14. , _pmtx(new std::mutex)
    15. { }
    16. // 拷贝构造函数
    17. shared_ptr(const shared_ptr& sp)
    18. : _ptr(sp._ptr)
    19. , _pcount(sp._pcount)
    20. , _pmtx(sp._pmtx)
    21. {
    22. AddCount(); // 引用计数+1函数
    23. }
    24. // 赋值函数
    25. shared_ptr& operator=(const shared_ptr& sp)
    26. {
    27. // 排除自赋值
    28. if (sp._ptr != _ptr)
    29. {
    30. Release(); // 资源释放函数
    31. _pcount = sp._pcount;
    32. _ptr = sp._ptr;
    33. _pmtx = sp._pmtx;
    34. AddCount();
    35. }
    36. return *this;
    37. }
    38. // 析构函数
    39. ~shared_ptr()
    40. {
    41. Release();
    42. }
    43. T& operator*()
    44. {
    45. return *_ptr;
    46. }
    47. T* operator->()
    48. {
    49. return &(*_ptr);
    50. }
    51. private:
    52. void AddCount()
    53. {
    54. _pmtx->lock(); // 加锁
    55. ++(*_pcount);
    56. _pmtx->unlock();
    57. }
    58. void Release()
    59. {
    60. bool flag = false; // 标识是否还有智能指针指向资源
    61. _pmtx->lock();
    62. if (--(*_pcount) == 0)
    63. {
    64. delete _ptr;
    65. delete _pcount;
    66. flag = true;
    67. }
    68. _pmtx->unlock();
    69. if (flag) delete _pmtx;
    70. }
    71. T* _ptr;
    72. int* _pcount;
    73. std::mutex* _pmtx;
    74. };
    75. }
    76. int main()
    77. {
    78. zhang::shared_ptr<int> sp1(new int(2));
    79. zhang::shared_ptr<int> sp2(new int(4));
    80. std::cout << *sp1 << std::endl;
    81. std::cout << *sp2 << std::endl;
    82. sp2 = sp1;
    83. std::cout << *sp2 << std::endl;
    84. std::vector<std::thread> vth(10000);
    85. for (int i = 0; i < 10000; ++i)
    86. {
    87. vth[i] = std::thread([&]() {
    88. zhang::shared_ptr<int> sp(sp1);
    89. // std::cout << *sp << std::endl;
    90. });
    91. }
    92. for (int i = 0; i < 10000; ++i)
    93. {
    94. vth[i].join();
    95. }
    96. return 0;
    97. }

    七. 总结

    • C++ 11标准库提供thread类,通过创建thread类对象,可以创建多线程,thread不能支持拷贝构造和拷贝赋值,但可以支持移动构造和移动赋值。
    • std::this_thread中提供了让出时间片、获取线程id以及线程休眠的相关接口。
    • 多线程访问临界资源的场景下,需要加锁以保证临界资源的安全性,C++标准库提供mutex类,可以实现加锁和解锁。同时为了避免加锁和解锁之间因为异常安全性问题导致执行流没有运行到解锁的位置,C++标准库又提供了lock_guard类,lock_guard在构造阶段会加锁,在析构时会自动解锁。
    • 通过控制多线程对同一个条件变量的等待和唤醒,可以实现线程间的同步执行。
    • 用饿汉模式实现单例,一般可以保证线程安全。懒汉模式在获取单例对象的GetInstance函数中,需要使用双层if来判断,在保证线程安全的同时避免不必要的资源浪费。
    • shared_ptr底层的引用计数器属于共享资源,在拷贝构造和赋值函数中,需要加锁以保证线程安全,C++标准库中提供的shared_ptr可以保证拷贝构造和赋值函数的线程安全,但是在访问指向的资源时,需要用户自行加锁解锁以保证线程安全。
  • 相关阅读:
    linux高性能服务器
    常量接口 vs 常量类 vs 枚举区别
    DockerFile打包项目实战解析,一文读懂dockerfile打包
    CKA 真题练习(十六)备份还原etcd
    2024华数杯数学建模竞赛选题建议+初步分析
    第九届世界渲染大赛什么时候开始举办?
    sql注入information_schema代替,无列名注入之[SWPU2019]Web11
    [机器学习] 通俗理解机器学习分类模型评估指标-准确率、精准率、召回率
    最近学习内容(2023-10-22)
    R3LIVE源码解析(10) — R3LIVE中r3live_vio.cpp文件
  • 原文地址:https://blog.csdn.net/weixin_43908419/article/details/132736941