【C++】多线程(thread)使用详解
OpenC++ 2024-06-18 09:05:02 阅读 50
目录
一、前言1. 多线程的含义2. 进程与线程的区别 二、创建线程1. thread2. join() 和 detach()3. this_thread 三、std::mutex1. lock() 与 unlock()2. lock_guard3. unique_lock 四、condition_variable五、std::atomic如果这篇文章对你有所帮助,渴望获得你的一个点赞!
一、前言
1. 多线程的含义
多线程(multithreading),是指在软件或者硬件上实现多个线程并发执行的技术。具有多核CPU的支持的计算机能够真正在同一时间执行多个程序片段,进而提升程序的处理性能。在一个程序中,这些独立运行的程序片段被称为“线程”(Thread),利用其编程的概念就叫作“多线程处理”。
2. 进程与线程的区别
进程是指一个程序的运行实例,而线程是指进程中独立的执行流程。一个进程可以有多个线程,多个线程之间可以并发执行。
一个程序有且只有一个进程,但可以拥有至少一个的线程。不同进程拥有不同的地址空间,互不相关,而不同线程共同拥有相同进程的地址空间。
二、创建线程
1. thread
C++支持多线程编程,主要使用的是线程库<thread>
。
示例1: 创建线程使用std::thread
类
#include <iostream>#include <thread> //必须包含<thread>头文件void threadFunctionA(){ std::cout << "Run New thread: 1" << std::endl;}void threadFunctionB(int n){ std::cout << "Run New thread: "<< n << std::endl;}int main(){ std::cout << "Run Main Thread" << std::endl;std::thread newThread1(threadFunctionA);std::thread newThread2(threadFunctionB,2);newThread1.join();newThread2.join();return 0;}
//resultRun Main ThreadRun New thread: 1Run New thread: 2
上述示例中,我们创建了两个线程newThread1和newThread2,使用函数threadFunctionA()
和threadFunctionB()
作为线程的执行函数,并使用join()
函数等待线程执行完成。
示例2: 执行函数有引用参数
#include <iostream>#include <thread> //必须包含<thread>头文件void threadFunc(int &arg1, int arg2){arg1 = arg2;std::cout << "arg1 = " << arg1 << std::endl;}int main(){ std::cout << "Run Main Thread!" << std::endl;int a = 1;int b = 5;std::thread newTh(threadFunc, a, b); //此处会报错newTh.join();return 0;}
注意: 若编译上述代码,编译器会报如下错误:
错误C2672“std::invoke”: 未找到匹配的重载函数错误C2893未能使函数模板“unknown-type std::invoke(_Callable &&,_Types &&...) noexcept(<expr>)”专用化
这是因为thread在传递参数时,是以右值传递的,如果要传递一个左值可以使用std::ref
和std::cref
std::ref
可以包装按引用传递的值为右值。std::cref
可以包装按const
引用传递的值为右值。
因此,示例2代码可修改为:
#include <iostream>#include <thread> //必须包含<thread>头文件void threadFunc(int &arg1, int arg2){ arg1 = arg2;std::cout << "New Thread arg1 = " << arg1 << std::endl;}int main(){ std::cout << "Run Main Thread!" << std::endl;int a = 1, b = 5;std::thread newTh(threadFunc, std::ref(a), b); //使用refnewTh.join();return 0;}
//resultRun Main Thread!arg1 = 5
2. join() 和 detach()
在C++中,创建了一个线程时,它通常被称为一个可联接(joinable)
的线程,可以通过调用join()
函数或detach()
函数来管理线程的执行。
方法 | 说明 | |
---|---|---|
1 | join() | 等待一个线程完成,如果该线程还未执行完毕,则当前线程(一般是主线程)将被阻塞,直到该线程执行完成,主线程才会继续执行。 |
2 | detach() | 将当前线程与创建的线程分离,使它们分别运行,当分离的线程执行完毕后,系统会自动回收其资源。如果一个线程被分离了,就不能再使用join() 函数了,因为线程已经无法被联接了。 |
3 | joinable() | 判断线程是否可以执行join() 函数,返回true/false |
示例3:
#include <iostream>#include <thread>#include <windows.h>void foo(){ std::cout << "Run New thread!\n";Sleep(2000); //需要头文件<windows.h>}int main(){ std::thread t(foo);if (t.joinable()){ t.join(); // 等待线程t执行完毕// t.detach(); // 分离线程t与主线程}std::cout << "Run Main thread!\n";return 0;}
在上述的示例中,创建了一个可联接的线程t
,使用t.join()
主线程将被阻塞,直到t
线程执行完毕。如果使用t.detach()
将t
线程分离,那么它们将同时执行,主线程将不会阻塞。
注意:
线程是在thread对象被定义的时候开始执行的,而不是在调用join()
函数时才执行的,调用join()
函数只是阻塞等待线程结束并回收资源。分离的线程(执行过detach()
的线程)会在调用它的线程结束或自己结束时自动释放资源。线程会在函数运行完毕后自动释放,不推荐利用其他方法强制结束线程,可能会因资源未释放而导致内存泄漏。若没有执行join()
或detach()
的线程在程序结束时会引发异常。
3. this_thread
在C++中,this_thread
类提供了一些关于当前线程的功能函数。具体如下:
使用 | 说明 | |
---|---|---|
1 | std::this_thread::sleep_for() | 当前线程休眠指定的时间 |
2 | std::this_thread::sleep_until() | 当前线程休眠直到指定时间点 |
3 | std::this_thread::yield() | 当前线程让出CPU,允许其他线程运行 |
4 | std::this_thread::get_id() | 获取当前线程的ID |
此外,this_thread
还包含重载运算符==
和!=
,用于比较两个线程是否相等。
示例4:
#include <iostream>#include <thread>#include <chrono>void my_thread(){ std::cout << "Thread " << std::this_thread::get_id() << " start!" << std::endl;for (int i = 1; i <= 5; i++){ std::cout << "Thread " << std::this_thread::get_id() << " running: " << i << std::endl;std::this_thread::yield();// 让出当前线程的时间片std::this_thread::sleep_for(std::chrono::milliseconds(200)); // 线程休眠200毫秒}std::cout << "Thread " << std::this_thread::get_id() << " end!" << std::endl;}int main(){ std::cout << "Main thread id: " << std::this_thread::get_id() << std::endl; std::thread t1(my_thread);std::thread t2(my_thread);t1.join();t2.join();return 0;}
//result 程序输出的结果可能如下:Main thread id: 43108Thread 39272 start!Thread 33480 start!Thread 33480 running: 1Thread 39272 running: 1Thread 33480 running: 2Thread 39272 running: 2Thread 33480 running: 3Thread 39272 running: 3Thread 33480 running: 4Thread 39272 running: 4Thread 39272 running: 5Thread 33480 running: 5Thread 39272 endsThread 33480 ends
三、std::mutex
在多线程编程中,需要注意以下问题:
线程之间的共享数据访问需要进行同步,以防止数据竞争和其他问题。可以使用互斥量、条件变量等机制进行同步。可能会发生死锁问题,即多个线程互相等待对方释放锁,导致程序无法继续执行。可能会发生竞态条件问题,即多个线程执行的顺序导致结果的不确定性。
1. lock() 与 unlock()
std::mutex
是 C++11 中最基本的互斥量,一个线程将mutex锁住时,其它的线程就不能操作mutex,直到这个线程将mutex解锁。
方法 | 说明 | |
---|---|---|
1 | lock() | 将mutex上锁。如果mutex已经被其它线程上锁,那么会阻塞,直到解锁;如果mutex已经被同一个线程锁住,那么会产生死锁。 |
2 | unlock() | 将mutex解锁,释放其所有权。如果有线程因为调用lock() 不能上锁而被阻塞,则调用此函数会将mutex的主动权随机交给其中一个线程;如果mutex不是被此线程上锁,那么会引发未定义的异常。 |
3 | try_lock() | 尝试将mutex上锁。如果mutex未被上锁,则将其上锁并返回true;如果mutex已被锁则返回false。 |
示例: 使用互斥量
#include <iostream>#include <thread>#include <mutex>std::mutex mtx;int num = 0;void thread_function(int &n){ for (int i = 0; i < 100; ++i){ mtx.lock();n++;mtx.unlock();}}int main(){ std::thread myThread[500];for (std::thread &a : myThread){ a = std::thread(thread_function, std::ref(num));a.join();}std::cout << "num = " << num << std::endl;std::cout << "Main thread exits!" << std::endl;return 0;}
//resultnum = 50000Main thread exits!
注意: 在使用互斥量时,需要注意以下问题:
加锁和解锁的顺序必须相同。不能在未获得锁的情况下对共享数据进行操作。由于使用了 std::mutex
来控制对共享资源的访问,因此可能会对程序的性能造成影响,如果需要优化程序性能,可以考虑使用无锁编程等技术。
2. lock_guard
std::lock_guard
是C++标准库中的一个模板类,用于实现资源的自动加锁和解锁。它是基于RAII(资源获取即初始化)的设计理念,能够确保在作用域结束时自动释放锁资源,避免了手动管理锁的复杂性和可能出现的错误。
std::lock_guard
的主要特点如下:
自动加锁: 在创建std::lock_guard
对象时,会立即对指定的互斥量进行加锁操作。这样可以确保在进入作用域后,互斥量已经被锁定,避免了并发访问资源的竞争条件。自动解锁:std::lock_guard
对象在作用域结束时,会自动释放互斥量。无论作用域是通过正常的流程结束、异常抛出还是使用return
语句提前返回,std::lock_guard
都能保证互斥量被正确解锁,避免了资源泄漏和死锁的风险。适用于局部锁定: 由于std::lock_guard
是通过栈上的对象实现的,因此适用于在局部范围内锁定互斥量。当超出std::lock_guard
对象的作用域时,互斥量会自动解锁,释放控制权。
使用std::lock_guard
的一般步骤如下:
创建一个std::lock_guard
对象,传入要加锁的互斥量作为参数。执行需要加锁保护的代码块。std::lock_guard
对象的作用域结束时,自动调用析构函数解锁互斥量。
示例:
#include <iostream>#include <thread>#include <mutex>std::mutex mtx; // 互斥量void thread_function(){ std::lock_guard<std::mutex> lock(mtx); // 加锁互斥量 std::cout << "Thread running" << std::endl; // 执行需要加锁保护的代码} // lock_guard对象的析构函数自动解锁互斥量int main(){ std::thread t1(thread_function); t1.join(); std::cout << "Main thread exits!" << std::endl; return 0;}
在上述示例中,std::lock_guard
对象lock
会在thread_function
中加锁互斥量,保护了输出语句的执行。当thread_function
结束时,lock_guard
对象的析构函数会自动解锁互斥量。这样可以确保互斥量在合适的时候被锁定和解锁,避免了多线程间的竞争问题。
总而言之,std::lock_guard
提供了一种简单而安全的方式来管理互斥量的锁定和解锁,使多线程编程更加方便和可靠。
3. unique_lock
std::unique_lock
是C++标准库中的一个模板类,用于实现更加灵活的互斥量的加锁和解锁操作。它提供了比std::lock_guard
更多的功能和灵活性。
std::unique_lock
的主要特点如下:
自动加锁和解锁: 与std::lock_guard
类似,std::unique_lock
在创建对象时立即对指定的互斥量进行加锁操作,确保互斥量被锁定。在对象的生命周期结束时,会自动解锁互斥量。这种自动加锁和解锁的机制避免了手动管理锁的复杂性和可能出现的错误。
支持灵活的加锁和解锁: 相对于std::lock_guard
的自动加锁和解锁,std::unique_lock
提供了更灵活的方式。它可以在需要的时候手动加锁和解锁互斥量,允许在不同的代码块中对互斥量进行多次加锁和解锁操作。
支持延迟加锁和条件变量:std::unique_lock
还支持延迟加锁的功能,可以在不立即加锁的情况下创建对象,稍后根据需要进行加锁操作。此外,它还可以与条件变量(std::condition_variable
)一起使用,实现更复杂的线程同步和等待机制。
使用std::unique_lock
的一般步骤如下:
创建一个std::unique_lock
对象,传入要加锁的互斥量作为参数。执行需要加锁保护的代码块。可选地手动调用lock
函数对互斥量进行加锁,或者在需要时调用unlock
函数手动解锁互斥量。
示例:
#include <iostream>#include <thread>#include <mutex>std::mutex mtx; // 互斥量void thread_function(){ std::unique_lock<std::mutex> lock(mtx); // 加锁互斥量 std::cout << "Thread running" << std::endl; // 执行需要加锁保护的代码 lock.unlock(); // 手动解锁互斥量 // 执行不需要加锁保护的代码 lock.lock(); // 再次加锁互斥量 // 执行需要加锁保护的代码} // unique_lock对象的析构函数自动解锁互斥量int main(){ std::thread t1(thread_function); t1.join(); std::cout << "Main thread exits!" << std::endl; return 0;}
在上述示例中,std::unique_lock
对象lock
会在创建时自动加锁互斥量,析构时自动解锁互斥量。我们可以通过调用lock
和unlock
函数手动控制加锁和解锁的时机,以实现更灵活的操作。
总而言之,std::unique_lock
提供了更灵活和功能丰富的互斥量的加锁和解锁机制,使多线程编程更加便捷和安全。它在处理复杂的同步需求、延迟加锁以及与条件变量的结合等方面非常有用。
四、condition_variable
std::condition_variable
是C++标准库中的一个类,用于在多线程编程中实现线程间的条件变量和线程同步。它提供了等待和通知的机制,使得线程可以等待某个条件成立时被唤醒,或者在满足某个条件时通知其他等待的线程。其提供了以下几个函数用于等待和通知线程:
方法 | 说明 | |
---|---|---|
1 | wait | 使当前线程进入等待状态,直到被其他线程通过notify_one() 或notify_all() 函数唤醒。该函数需要一个互斥锁作为参数,调用时会自动释放互斥锁,并在被唤醒后重新获取互斥锁。 |
2 | wait_for | wait_for() : 使当前线程进入等待状态,最多等待一定的时间,直到被其他线程通过notify_one() 或notify_all() 函数唤醒,或者等待超时。该函数需要一个互斥锁和一个时间段作为参数,返回时有两种情况:等待超时返回std::cv_status::timeout ,被唤醒返回std::cv_status::no_timeout 。 |
3 | wait_until | wait_until() : 使当前线程进入等待状态,直到被其他线程通过notify_one() 或notify_all() 函数唤醒,或者等待时间达到指定的绝对时间点。该函数需要一个互斥锁和一个绝对时间点作为参数,返回时有两种情况:时间到达返回std::cv_status::timeout ,被唤醒返回std::cv_status::no_timeout 。 |
4 | notify_one | notify_one() : 唤醒一个等待中的线程,如果有多个线程在等待,则选择其中一个线程唤醒。 |
5 | notify_all | notify_all() : 唤醒所有等待中的线程,使它们从等待状态返回。 |
std::condition_variable
的主要特点如下:
等待和通知机制:std::condition_variable
允许线程进入等待状态,直到某个条件满足时才被唤醒。线程可以调用wait
函数进入等待状态,并指定一个互斥量作为参数,以确保线程在等待期间互斥量被锁定。当其他线程满足条件并调用notify_one
或notify_all
函数时,等待的线程将被唤醒并继续执行。
与互斥量配合使用:std::condition_variable
需要与互斥量(std::mutex
或std::unique_lock<std::mutex>
)配合使用,以确保线程之间的互斥性。在等待之前,线程必须先锁定互斥量,以避免竞争条件。当条件满足时,通知其他等待的线程之前,必须再次锁定互斥量。
支持超时等待:std::condition_variable
提供了带有超时参数的等待函数wait_for
和wait_until
,允许线程在等待一段时间后自动被唤醒。这对于处理超时情况或限时等待非常有用。
使用std::condition_variable
的一般步骤如下:
创建一个std::condition_variable
对象。创建一个互斥量对象(std::mutex
或std::unique_lock<std::mutex>
)。在等待线程中,使用std::unique_lock
锁定互斥量,并调用wait
函数进入等待状态。在唤醒线程中,使用std::unique_lock
锁定互斥量,并调用notify_one
或notify_all
函数通知等待的线程。等待线程被唤醒后,继续执行相应的操作。
示例:
#include <iostream>#include <thread>#include <condition_variable>std::mutex mtx; // 互斥量std::condition_variable cv; // 条件变量bool isReady = false; // 条件void thread_function(){ std::unique_lock<std::mutex> lock(mtx); while (!isReady) { cv.wait(lock); // 等待条件满足 } std::cout << "Thread is notified" << std::endl;}int main(){ std::thread t(thread_function); // 模拟一段耗时操作 std::this_thread::sleep_for(std::chrono::seconds(2)); { std::lock_guard<std::mutex> lock(mtx); isReady = true; // 设置条件为true } cv.notify_one(); // 通知等待的线程 t.join(); return 0;}
上述示例中,创建了一个线程,该线程在等待状态下通过cv.wait(lock)
等待条件满足。主线程经过一段时间后将条件设置为true
,然后通过cv.notify_one()
通知等待的线程。等待的线程被唤醒后输出一条消息。
五、std::atomic
std::mutex
可以很好地解决多线程资源争抢的问题,但它每次循环都要加锁、解锁,这样固然会浪费很多的时间。
在 C++ 中,std::atomic
是用来提供原子操作的类,atomic,本意为原子,原子操作是最小的且不可并行化的操作。这就意味着即使是多线程,也要像同步进行一样同步操作原子对象,从而省去了互斥量上锁、解锁的时间消耗。
使用 std::atomic
可以保证数据在操作期间不被其他线程修改,这样就避免了数据竞争,使得程序在多线程并发访问时仍然能够正确执行。
示例:
#include <iostream>#include <thread>#include <mutex>#include <atomic> //必须包含std::atomic_int num = 0;void thread_function(std::atomic_int &n) //修改类型{ for (int i = 0; i < 100; ++i){ n++;}}int main(){ std::thread myThread[500];for (std::thread &a : myThread){ a = std::thread(thread_function, std::ref(num));a.join();}std::cout << "num = " << num << std::endl;std::cout << "Main thread exits!" << std::endl;return 0;}
//resultnum = 50000Main thread exits!
说明:std::atomic_int
是std::atomic<int>
的别名。
如果这篇文章对你有所帮助,渴望获得你的一个点赞!
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。