C++ 多线程使用

线程

std::thread

创建线程

  1. 使用函数

    #include <thread>
    #include <iostream>
    
    void task(int i)
    {
        std::cout << i << std::endl;
    }
    
    int main()
    {
        for (int i = 0; i < 8; i++)
        {
            std::thread t(task, i);
            t.detach();
        }
        getchar();
        return 0;
    }
    
  2. 使用lambda表达式创建线程

    #include <thread>
    #include <iostream>
    
    int main()
    {
        for (int i = 0; i < 8; i++)
        {
            std::thread t([](int i){
                std::cout << i << std::endl;
            }, i);
            t.detach();
        }
        getchar();
        return 0;
    }
    
  3. 重载了()运算符的类的实例

    #include <thread>
    #include <iostream>
    
    struct Task
    {
        void operator()(int i)
        {
            std::cout << i << std::endl;
        }
    };
    
    int main()
    {
        for (int i = 0; i < 8; i++)
        {
            Task task;
            std::thread t(task, i);
            t.detach();
        }
        getchar();
        return 0;
    }
    
  4. 在类中创建线程

    #include <iostream>
    #include <thread>
    #include <atomic>
    #include <chrono>
    
    class Worker {
    public:
        Worker() : stopFlag(false) {}
    
        // 启动线程
        void start() {
            workerThread = std::thread(&Worker::run, this);
        }
    
        // 停止线程
        void stop() {
            stopFlag = true;
            if (workerThread.joinable()) {
                workerThread.join();
            }
        }
    
        // 析构函数确保线程停止
        ~Worker() {
            stop();
        }
    
    private:
        std::thread workerThread;
        std::atomic<bool> stopFlag;
    
        // 线程运行的函数
        void run() {
            while (!stopFlag) {
                std::cout << "线程正在运行..." << std::endl;
                std::this_thread::sleep_for(std::chrono::seconds(1));
            }
            std::cout << "线程已停止" << std::endl;
        }
    };
    
    int main() {
        Worker worker;
    
        worker.start(); // 启动线程
    
        std::this_thread::sleep_for(std::chrono::seconds(5)); // 主线程等待
    
        worker.stop(); // 停止线程
    
        return 0;
    }
    
    

参数传递

  1. 值传递

    #include <thread>
    #include <iostream>
    
    struct Task
    {
        void operator()(int i)
        {
            printf("thread &i : %p\n", &i);
        }
    };
    
    int main()
    {
        for (int i = 0; i < 1; i++)
        {
            printf("&i : %p\n", &i);
            Task task;
            std::thread t(task, i);
            t.detach();
        }
        getchar();
        return 0;
    }
    
  2. 引用传递
    引用传递的地址和主线程的地址也是不一致的

    #include <thread>
    #include <iostream>
    
    struct Task
    {
        void operator()(const int &i) // 这里必须是const,不然会报错
        {
            printf("thread &i : %p\n", &i);
        }
    };
    
    int main()
    {
        for (int i = 0; i < 1; i++)
        {
            printf("&i : %p\n", &i);
            Task task;
            std::thread t(task, i);
            t.detach();
        }
        getchar();
        return 0;
    }
    
  3. 指针传递

    #include <thread>
    #include <iostream>
    
    struct Task
    {
        void operator()(int *i)
        {
            printf("thread &i : %p\n", i);
        }
    };
    
    int main()
    {
        for (int i = 0; i < 1; i++)
        {
            printf("&i : %p\n", &i);
            Task task;
            std::thread t(task, &i);
            t.join(); // 这里使用join,确保i没有被销毁
        }
        getchar();
        return 0;
    }
    
  4. std::ref 传参
    std::ref 可以保证子线程中的参数地址和主线程中的参数地址是一致的,即在子线程和主线程是同步的。

    #include <thread>
    #include <iostream>
    
    struct Task
    {
        void operator()(int &i)
        {
            printf("thread &i : %p\n", &i);
        }
    };
    
    int main()
    {
        for (int i = 0; i < 1; i++)
        {
            printf("&i : %p\n", &i);
            Task task;
            std::thread t(task, std::ref(i));
            t.join();
        }
        getchar();
        return 0;
    }
    

std::mutex

  • 构造函数
  • lock函数 调用线程将锁住该互斥量。
  • unlock函数 调用线程将释放该互斥量。
  • try_lock函数 调用线程将尝试锁住该互斥量,不成功返回false。
    #include <iostream>       // std::cout
    #include <thread>         // std::thread
    #include <mutex>          // std::mutex
    
    volatile int counter(0); // non-atomic counter
    std::mutex mtx;           // locks access to counter
    
    void attempt_10k_increases() 
    {
        for (int i=0; i<10000; ++i) 
        {
            mtx.lock();
            ++counter;
            mtx.unlock();
        }
    }
    
    int main (int argc, const char* argv[]) {
        std::thread threads[10];
        for (int i=0; i<10; ++i)
            threads[i] = std::thread(attempt_10k_increases);
    
        for (auto& th : threads) th.join();
        std::cout << counter << " successful increases of the counter.\n";
    
        return 0;
    }
    

std::lock_guard

  • 自动锁定和解锁
    当 std::lock_guard 对象被创建时,它会自动锁定提供的互斥锁。当该对象离开其作用域(即被销毁)时,它会自动解锁互斥锁。这种自动管理确保了即使在发生异常的情况下,互斥锁也能被正确解锁。

  • 简单易用
    std::lock_guard 的使用非常简单,只需要在需要保护的代码块之前创建它即可。无需显式调用锁定和解锁函数。

  • 非递归
    std::lock_guard 不支持递归锁定,即不能多次锁定同一个互斥锁。如果尝试这样做,会导致未定义的行为。

    #include <iostream>       // std::cout
    #include <thread>         // std::thread
    #include <mutex>          // std::mutex
    
    volatile int counter(0); // non-atomic counter
    std::mutex mtx;           // locks access to counter
    
    void attempt_10k_increases() 
    {
        for (int i=0; i<10000; ++i) 
        {
            std::lock_guard<std::mutex> l(mtx);
            ++counter;
        }
    }
    
    int main (int argc, const char* argv[]) {
        std::thread threads[10];
        for (int i=0; i<10; ++i)
            threads[i] = std::thread(attempt_10k_increases);
    
        for (auto& th : threads) th.join();
        std::cout << counter << " successful increases of the counter.\n";
    
        return 0;
    }
    

std::unique_lock

  • 可以在构造时选择是否锁定互斥量。std::unique_lock<std::mutex> lock(my_mutex1, std::defer_lock); std::defer_lock的意思 就是 并没有给mutex加锁:初始化一个没有加锁的mutex,但是后面需要对unique_lock对象进行加锁
  • 支持手动锁定和解锁:可以在需要时调用 lock()unlock() 方法。
  • 支持条件变量的等待:在等待条件变量时,可以传入 unique_lock,并在条件满足时自动解锁和重新锁定。
    #include <iostream>       // std::cout
    #include <thread>         // std::thread
    #include <mutex>          // std::mutex
    
    volatile int counter(0); // non-atomic counter
    std::mutex mtx;           // locks access to counter
    
    void attempt_10k_increases() 
    {
        for (int i=0; i<10000; ++i) 
        {
            std::unique_lock<std::mutex> l(mtx);
            ++counter;
        }
    }
    
    int main (int argc, const char* argv[]) {
        std::thread threads[10];
        for (int i=0; i<10; ++i)
            threads[i] = std::thread(attempt_10k_increases);
    
        for (auto& th : threads) th.join();
        std::cout << counter << " successful increases of the counter.\n";
    
        return 0;
    }
    

条件变量

std::condition_variable

等待

条件变量的wait方法通常是通过以下方式实现的:

  1. 把线程放入等待队列并释放锁。
  2. 等待被显式唤醒(notify_one 或 notify_all)或者因为虚假唤醒被操作系统强行唤醒。即使没有执行notify_one或者notify_all函数也有可能部分线程被虚假唤醒。
  3. 被唤醒后重新尝试获取锁。
void wait(std::unique_lock<std::mutex>& lock);

template <class Predicate>  
void wait (unique_lock<mutex>& lck, Predicate pred); // 解决虚假唤醒

唤醒

void notify_one() noexcept;
void notify_all() noexcept;

DEMO

#include <iostream>       // std::cout
#include <thread>         // std::thread
#include <mutex>          // std::mutex


std::mutex mtx;
std::condition_variable cv;
bool ready = false;   // 全局标志位

void printId(int id)
{
    std::unique_lock<std::mutex> lck(mtx);
    // 如果标志位不为true,则等待
    while(!ready)
    {
        // 线程被阻塞,直到标志位变为true,此时 mtx 被释放,go 线程能够获取到锁。
        cv.wait(lck);
    }
    // 另一种写法, 等价于上面的写法
    // cv.wait(lck, []{ return ready; }); 
    std::cout << "thread: " << std::this_thread::get_id() << " id: " << id << "\n";
}

void go()
{
    std::unique_lock<std::mutex> lck(mtx);
    // 改变全局标志位
    ready = true;
    // 唤醒所有线程
    cv.notify_all();
}

int main()
{
    std::thread threads[10];

    for (int i = 0; i < 10; ++i)
    {
        threads[i] = std::thread(printId, i);
    }
    std::cout << "create done.\n" ;

    go();

    for (auto &t : threads)
    {
        t.join();
    }
    std::cout << "process done.\n" ;
    return 0;
}

数据传递

promise future

promise future

承诺的未来
std::promise的作用就是提供一个不同线程之间的数据同步机制,它可以存储一个某种类型的值,并将其传递给对应的future, 即使这个future不在同一个线程中也可以安全的访问到这个值。

/** @file  20190815future.cpp
*  @note  
*  @brief
*  @author 
*  @date   2019-8-15
*  @note   
*  @history
*  @warning
*/
#include <iostream>
#include <functional>
#include <future>
#include <thread>
#include <chrono>
#include <cstdlib>

void thread_set_promise(std::promise<int>& promiseObj) {
    std::cout << "In a thread, making data...\n";
    std::this_thread::sleep_for(std::chrono::milliseconds(1000));
    promiseObj.set_value(35);
    std::cout << "Finished\n";
}

int main() {
    std::promise<int> promiseObj;
    std::future<int> futureObj = promiseObj.get_future();
    std::thread t(&thread_set_promise, std::ref(promiseObj));
    std::cout << futureObj.get() << std::endl;
    t.join();

    system("pause");
    return 0;
}

生产者消费者

c++多线程实现生产者消费者

线程池

c++11 线程池

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容