C++多线程编程之多线程数据共享问题

开发 后端
本篇给大家详细介绍C++多线程编程之多线程数据共享问题,希望能够帮助到你!

[[385369]]

 通过容器创建多个线程

#include <vector> 
#include <iostream> 
#include <thread> 
void printTest(int num)  

    std::cout << "子线程:" << num << "启动" << std::endl; 
    std::cout << "子线程:" << num << "结束" << std::endl; 

int main()  

    std::vector<std::thread* > test; 
    for (int i = 0; i < 10; i++)  
    { 
        test.push_back(new std::thread(printTest, i)); 
    } 
    for (auto& pmove : test) 
    { 
        pmove->join(); 
    } 
    std::cout << "主线程" << std::endl; 
    return 0; 

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.

 数据共享问题分析只读数据:稳定安全,不需要特殊处理,直接读即可

#include <vector> 
#include <iostream> 
#include <thread> 
std::vector<int> g_data={ 1,2,3 }; 
void printTest(int num)  

 std::cout << "子线程:" << num << "读操作" << std::endl; 
 for (auto pmove : g_data)  
 { 
 std::cout << pmove << std::endl; 
 } 

int main()  

 std::vector<std::thread* > test; 
 for (int i = 0; i < 10; i++)  
 { 
 test.push_back(new std::thread(printTest, i)); 
 } 
 for (auto& pmove : test) 
 { 
 pmove->join(); 
 } 
 std::cout << "主线程" << std::endl; 
 return 0; 

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.

 有读有写:需要做特别处理(写只做写,读只做读操作,保持共享数据只有唯一操作),不然会引发崩溃

#include <list> 
#include <iostream> 
#include <thread> 
class SeaKing  

public
 void makeFriend() 
 { 
 for (int i = 0; i < 100000; i++)  
 { 
 std::cout << "增加一个" << std::endl; 
 mm.push_back(i); 
 } 
 } 
 void breakUp()  
 { 
 for (int i = 0; i < 100000; i++)  
 { 
 if (!mm.empty())  
 { 
 std::cout << "减少一个:"<<mm.front() << std::endl; 
 mm.pop_front(); 
 } 
 else  
 { 
 std::cout << "已空" << std::endl; 
 } 
 } 
 } 
protected: 
 std::list<int> mm; 
}; 
int main()  

 SeaKing man; 
 std::thread t1(&SeaKing::makeFriend, &man); 
 std::thread t2(&SeaKing::breakUp, &man); 
 t1.join(); 
 t2.join(); 
 return 0; 

//以上程序会异常退出 
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.

 加锁的方式解决数据共享问题互斥量mutex: 互斥量可以理解为锁,他是一个mutex类的对象通过调用成员函数lock函数进行加锁通过调用成员函数unlock函数进行解锁

#include <list> 
#include <iostream> 
#include <thread> 
#include <mutex> //1.包含头文件 
class SeaKing  

public
 void makeFriend() 
 { 
 for (int i = 0; i < 100000; i++)  
 { 
 m_mutex.lock(); 
 std::cout << "增加一个" << std::endl; 
 mm.push_back(i); 
 m_mutex.unlock(); 
 } 
 } 
 bool readInfo()  
 { 
 m_mutex.lock(); //2.加锁 
 if (!mm.empty()) 
 { 
 std::cout << "减少一个:" << mm.front() << std::endl; 
 mm.pop_front(); 
 m_mutex.unlock(); 
 return true
 } 
 m_mutex.unlock(); 
 return false
 } 
 void breakUp()  
 { 
 for (int i = 0; i < 100000; i++) 
 { 
 int result = readInfo(); 
 if (result == false)  
 { 
 std::cout << "已空" << std::endl; 
 } 
 } 
 } 
protected: 
 std::list<int> mm; 
 std::mutex m_mutex; //创建互斥量对象 
}; 
int main()  

 SeaKing man; 
 std::thread t1(&SeaKing::makeFriend, &man); 
 std::thread t2(&SeaKing::breakUp, &man); 
 t1.join(); 
 t2.join(); 
 return 0; 

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.

 注意:lock函数与unlock都是成对出现,如果lock了没有调用unlock会引发异常,abort终止程序通过lock_guard加锁。

#include <list> 
#include <iostream> 
#include <thread> 
#include <mutex> 
class SeaKing  

public
    void makeFriend() 
    { 
        std::lock_guard<std::mutex> sbguard(m_mutex); 
        for (int i = 0; i < 100000; i++)  
        { 
            std::cout << "增加一个" << std::endl; 
            mm.push_back(i); 
        } 
    } 
    bool readInfo()  
    { 
        std::lock_guard<std::mutex> sbguard(m_mutex); 
        if (!mm.empty()) 
        { 
            std::cout << "减少一个:" << mm.front() << std::endl; 
            mm.pop_front(); 
            return true
        } 
        return false
    } 
    void breakUp()  
    { 
        for (int i = 0; i < 100000; i++) 
        { 
            int result = readInfo(); 
            if (result == false)  
            { 
                std::cout << "已空" << std::endl; 
            } 
        } 
    } 
protected: 
    std::list<int> mm; 
    std::mutex m_mutex; 
}; 
int main()  

    SeaKing man; 
    std::thread t1(&SeaKing::makeFriend, &man); 
    std::thread t2(&SeaKing::breakUp, &man); 
    t1.join(); 
    t2.join(); 
    return 0; 

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.

 其实lock_guard 在构造函数中进行lock,在析构函数中进行unlock,本质上还是lock与unlock操作。

 

责任编辑:姜华 来源: 今日头条
相关推荐

2021-02-25 15:58:46

C++线程编程开发技术

2023-06-13 13:39:00

多线程异步编程

2023-06-06 08:17:52

多线程编程Thread类

2023-06-05 07:56:10

线程分配处理器

2012-05-18 10:36:20

CC++编程

2010-01-18 14:09:58

C++多线程

2009-08-17 16:56:51

C#多线程控制进度条

2021-12-26 18:22:30

Java线程多线程

2013-06-07 16:30:08

iOS多线程iOS开发NSThread

2009-03-12 10:52:43

Java线程多线程

2013-07-16 10:12:14

iOS多线程多线程概念多线程入门

2021-06-29 07:47:23

多线程协作数据

2016-10-09 20:15:30

多线程多进程

2010-02-05 15:30:54

C++多线程测试

2010-02-04 10:19:39

C++多线程

2011-08-18 17:07:23

IOS开发多线程NSInvocatio

2010-01-21 11:25:44

linux多线程线程资源

2024-02-02 18:29:54

C++线程编程

2023-06-07 13:49:00

多线程编程C#

2024-06-24 08:10:00

C++互斥锁
点赞
收藏

51CTO技术栈公众号