C++多线程运行整理

一.多线程运行

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

void print_id(int id)
{
    std::cout << "ID:" << id <<  ",线程ID为:" << std::this_thread::get_id() <<std::endl;
}
int main(void)
{   
    std::thread t1(print_id,1);
    t1.join();
    std::thread t2(print_id,2);
    t2.join();
    return 0;
}

二.多线程并发的实现方式

1.使用函数指针

复制代码
// 多线程并发1_使用函数指针
// 使用多线程的库,来实现并行计算的加法

#include <iostream>   
#include <thread>

int sum = 0;
float avg = 0;
void add(int a,int b)
{
    sum += a + b;
}

void Avg(int a,int b)
{
    avg = (a + b)/2;
}

int main()
{
    int a = 5;
    int b = 10;
    std::thread t1(add,a,b);
    t1.join();
    std::cout << "线程1和为:" << sum <<std::endl;
    
    std::thread t2(add,a,b);
    t2.join();
    std::cout << "线程2和为:" << sum <<std::endl;
    
    std::thread t3(Avg,a,b);
    t3.join();
    std::cout << "线程3平均为:" << avg <<std::endl;
    return 0;
}

|---------------------|-----------------|---------------------------------|
| 全局变量无锁保护 | 多线程共享变量,有数据竞争风险 | 使用 std::mutex |
| std::thread 无法返回值 | 不能直接获取线程函数的返回值 | 改用 std::async + std::future |

2.使用函数对象

复制代码
// 多线程并发2_使用函数对象
// 通过类中的 operator() 方法定义函数对象来创建线程

#include <iostream>   
#include <thread>

class PrintTask
{
public:
    void operator()(int count) const{
        for (int i = 0;i < count;++i){
            std::cout << "第" << i+1 << "次使用函数对象(function object)创建多线程!\n";
        }
    }
};

int main (){
    std::thread t2(PrintTask(),5);//创建线程,传递函数对象和参数
    t2.join(); //等待线程完成
    return 0;
}

3.使用Lambda表达式

复制代码
// 多线程并发3_使用Lambda表达式
// 使用Lambda表达式可以直接内联定义线程执行的代码

#include <iostream>   
#include <thread>
int main(){
    std::thread t3([](int count){
        for (int i = 0;i < count; ++i){
            std::cout << "第" << i+1 << "次使用Lambda表达式执行线程!\n" ;
        }
    },5);//创建线程,传递Lambda表达式和参数
    t3.join();//等待线程完成
    return 0;
}

三.整合3种多线程并发创建方式融合展示

复制代码
/*
将函数指针,函数对象和Lambda表达式 3种方式创建线程进行融合展示
*/

#include <iostream>
#include <thread>
using namespace std;

//一个简单的函数,作为线程的入口函数
void foo(int Z){
    for (int i = 0;i < Z;i++){
        cout << "线程使用函数指针作为可调用参数\n";
    }
}

//可调用对象的类定义
class ThreadObj{
    public:
        void operator()(int x) const{
            for (int i = 0;i < x;i++){
                cout << "线程使用函数对象作为可调用参数\n";
            }
        }
};

int main(){
    cout << "线程1,2,3独立运行" << endl;
    //使用函数指针创建线程
    thread th1(foo,3);

    //使用函数对象创建线程
    thread th2(ThreadObj(),3);

    //使用Lambda表达式创建线程
    thread th3([] (int x){
        for (int i = 0;i < x;i++){
            cout << "线程使用Lambda表达式作为可调用参数\n";
        }
    },3);

    //等待所有线程完成
    th1.join(); //等待线程th1完成
    th2.join(); //等待线程th2完成
    th3.join(); //等待线程th3完成
    return 0;
}

整理不易,诚望各位看官点赞 收藏 评论 予以支持,这将成为我持续更新的动力源泉。若您在阅览时存有异议或建议,敬请留言指正批评,让我们携手共同学习,共同进取,吾辈自当相互勉励!

相关推荐
艾上编程4 分钟前
第三章——爬虫工具场景之Python爬虫实战:行业资讯爬取与存储,抢占信息先机
开发语言·爬虫·python
β添砖java12 分钟前
python第一阶段第10章
开发语言·python
爬山算法16 分钟前
Netty(13)Netty中的事件和回调机制
java·前端·算法
CoovallyAIHub22 分钟前
是什么支撑L3自动驾驶落地?读懂AI驾驶与碰撞预测
深度学习·算法·计算机视觉
玉树临风ives30 分钟前
atcoder ABC436 题解
c++·算法·leetcode·atcoder·信息学奥赛
fpcc31 分钟前
C++23中的自定义模块开发
c++·c++23
倔强的小石头_34 分钟前
Python 从入门到实战(八):类(面向对象的 “对象模板”)
服务器·开发语言·python
patrickpdx34 分钟前
leetcode:相等的有理数
算法·leetcode·职场和发展
dragoooon3444 分钟前
[C++——lesson29.数据结构进阶——「AVL树」]
算法
碧海银沙音频科技研究院1 小时前
论文写作word插入公式显示灰色解决办法
人工智能·深度学习·算法