C++ Thread多线程并发记录(3)线程创建总结

1.启动线程传递全局函数

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

void Th1(int id){
    std::cout << "Create global fun. id = " << id << std::endl;
}
void TH1(const int &id){
    std::cout << "Create global fun. id = " << id << std::endl;
}

int main() {
    std::thread th1(Th1, 1);
    const int &num = 2;
    std::thread th2(Th1,std::ref(num));
    th1.join();//等待子线程结束后汇聚,注意同一个thread对象join两次会产生未定义行为
    th2.join();
    //th2.detach();//detach方法将线程变为守护进程,有可能出现主线程结束后,子线程还未结束的情况,故而不要使用detach线程访问栈内存
    return 0;
}

2.启动线程传递类成员函数

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

class TH1{
public:
    void print(){
        std::cout << name << std::endl;
    }
    std::string name{};
};
class TH2{
public:
    void operator()(std::string name) {
        std::cout << name << std::endl;
    }
};

int main() {
    TH1 t1;
    t1.name = "this is thread 1.";
    std::thread th1(&TH1::print, &t1);//传递类成员函数地址以及类实例地址
    std::thread th2((TH2()), "this is thread 2.");

    th1.join();
    th2.join();
    return 0;
}

3.传递Lambda表达式

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

int main() {
    std::string name{"This is thread 1."};
    std::thread t1([](const std::string &s){ std::cout << s << std::endl; }, std::ref(name));
    t1.join();
    return 0;
}

4.Thread RAII管理线程

cpp 复制代码
#include <iostream>
#include <string>
#include <memory>
#include <vector>
#include <thread>

class Thread_join {
public:
    Thread_join() = default;
    virtual ~Thread_join() = default;

    virtual void start() {
        thread_ = std::thread(&Thread_join::do_something, this); //传入基类指针产生动态绑定,根据动态类型选择虚函数类型
    };

    virtual void wait(){
        if (thread_.joinable())
            thread_.join();
    }
protected:
    std::thread thread_; //使用智能指针管理thread需要自定义
    virtual void do_something() = 0; //类中方法声明为纯虚函数
};

class TH1 : public Thread_join {
public:
    void do_something() override {
        for (const auto &i : s)
            std::cout << i << " ";
    }
private:
    std::vector<std::string> s{"This", "is", "thread", "RAII"};
};

int main() {
    TH1 t;
    t.start();
    t.wait();

    return 0;
}
cpp 复制代码
#include <iostream>
#include <string>
#include <vector>
#include <thread>

class Thread_join {
public:
    Thread_join() = default;
    virtual ~Thread_join(){
        if (thread_.joinable())
            thread_.join();
    }

    virtual void start() {
        thread_ = std::thread(&Thread_join::do_something, this); //传入基类指针产生动态绑定,根据动态类型选择虚函数类型
    };

    virtual void wait(){
        if (thread_.joinable())
            thread_.join();
    }
protected:
    std::thread thread_; //使用智能指针管理thread需要自定义
    virtual void do_something() = 0; //类中方法声明为纯虚函数
};

class TH1 : public Thread_join {
public:
    ~TH1() override{
        if (thread_.joinable())
            thread_.join();
    }
    void do_something() override {
        for (const auto &i : s)
            std::cout << i << " ";
    }
private:
    std::vector<std::string> s{"This", "is", "thread", "RAII"};
};

int main() {
    TH1 t;
    t.start();

    return 0;
}
相关推荐
娅娅梨33 分钟前
C++ 错题本--not found for architecture x86_64 问题
开发语言·c++
兵哥工控37 分钟前
MFC工控项目实例二十九主对话框调用子对话框设定参数值
c++·mfc
我爱工作&工作love我1 小时前
1435:【例题3】曲线 一本通 代替三分
c++·算法
娃娃丢没有坏心思1 小时前
C++20 概念与约束(2)—— 初识概念与约束
c语言·c++·现代c++
lexusv8ls600h1 小时前
探索 C++20:C++ 的新纪元
c++·c++20
lexusv8ls600h1 小时前
C++20 中最优雅的那个小特性 - Ranges
c++·c++20
白-胖-子1 小时前
【蓝桥等考C++真题】蓝桥杯等级考试C++组第13级L13真题原题(含答案)-统计数字
开发语言·c++·算法·蓝桥杯·等考·13级
好睡凯1 小时前
c++写一个死锁并且自己解锁
开发语言·c++·算法
依旧阳光的老码农2 小时前
标准C++ 字符串
开发语言·c++
白-胖-子3 小时前
【蓝桥等考C++真题】蓝桥杯等级考试C++组第13级L13真题原题(含答案)-成绩排序
c++·算法·蓝桥杯·真题·蓝桥等考