目錄<future>future模板類成員函數:promise類promise的使用常式:packaged_task模板類常式:async模板函數常式:shared_future模板類 <future> 標準庫提供了一些工具來獲取非同步任務(即在單獨的線程中啟動的函數)的返回值,並捕捉其所拋出的異常。 ...
目錄
<future>
標準庫提供了一些工具來獲取非同步任務(即在單獨的線程中啟動的函數)的返回值,並捕捉其所拋出的異常。這些值在共用狀態中傳遞,其中非同步任務可以寫入其返回值或存儲異常,而且可以由持有該引用該共用態的 std::future 或 std::shared_future 實例的線程檢驗、等待或是操作這個狀態。
併發支持庫 (C++11 起) - cppreference.com
future模板類
概念:
future - C++ Reference (cplusplus.com)
future類用於給線程提供一個方便管理和獲取非同步操作的結果的功能.
這個類允許將一個非同步操作封裝為一個未來可獲取結果的對象,從而實現了高效的併發編程。
註意:
- future本身沒有set方法,必須搭配promise進行使用.
- future對象要在需要傳遞結果的線程間可見(能夠看見同一個future) -- 引用傳遞
成員函數:
- 定義
template< class T > class future;
template< class T > class future<T&>;
template<> class future<void>; //空 -- 不需要返回結果的future.
- 構造函數
future() noexcept; //空對象
future( future&& other ) noexcept; //只允許移動
future( const future& other ) = delete; //禁止拷貝
- operator=
future& operator=( future&& other ) noexcept; //只允許移動
future& operator=( const future& other ) = delete; //禁止拷貝
- get
取出future對象內保存的數據.是阻塞函數,如果目標future所線上程一直沒有set_value,則會一直等待,直到set_value,成功獲取到數據後解除阻塞.
//三個重載函數,根據future的數據類型自動決定
T get();
T& get();
void get(); //空future對象沒有東西傳的時候使用
- wait
阻塞等待,直到目標線程set_value.和get類似,只是沒有返回值.
void wait() const;
- wait_for & wait_until
阻塞等待一段時長和等待到某時刻.之後會返回future的狀態
template< class Rep, class Period >
std::future_status wait_for( const std::chrono::duration<Rep,Period>& timeout_duration ) const;
template< class Clock, class Duration >
std::future_status wait_until( const std::chrono::time_point<Clock,Duration>& timeout_time ) const;
常量 | 解釋 |
---|---|
future_status::deferred | 子線程中的任務函仍未啟動(配合std::async生效) |
future_status::ready | 子線程中的任務已經執行完畢,結果已就緒 |
future_status::timeout | 子線程中的任務正在執行中,指定等待時長已用完 |
- share
返回多個線程共用的future對象,即shared_future模板類
shared_future<T> share();
返回值:shared_future<T>(std::move(*this))
promise類
promise類內封裝了future對象,用於管理和使用future對象.
- 定義
template< class R > class promise;
template< class R > class promise<R&>;
template<> class promise<void>;
- 構造函數
promise();
promise( promise&& other ) noexcept; //
promise( const promise& other ) = delete; //禁止拷貝
- get_future
在std::promise
類內部管理著一個future
類對象,調用get_future()
就可以得到這個future
對象了
std::future<T> get_future();
- set_value系列
set_value | 設置結果為指定值 (公開成員函數) |
---|---|
set_value_at_thread_exit | 設置結果為指定值,同時僅線上程退出時分發提醒 (公開成員函數) |
set_exception | 設置結果為指示異常 (公開成員函數) |
set_exception_at_thread_exit | 設置結果為指示異常,同時僅線上程退出時分發提醒 (公開成員函數) |
- set_value
存儲要傳出的 value
值,並立即讓狀態就緒,這樣數據被傳出其它線程就可以得到這個數據了。重載的第四個函數是為promise<void>
類型的對象準備的。
void set_value( const R& value );
void set_value( R&& value );
void set_value( R& value );
void set_value();
- set_value_at_thread_exit
存儲要傳出的 value 值,但是不立即令狀態就緒。在當前線程退出時,子線程資源被銷毀,再令狀態就緒。
void set_value_at_thread_exit( const R& value );
void set_value_at_thread_exit( R&& value );
void set_value_at_thread_exit( R& value );
void set_value_at_thread_exit();
promise的使用常式:
#include <iostream>
#include <thread>
#include <functional>
#include <chrono>
#include <future>
void func(std::promise<std::string>& pro) {
std::this_thread::sleep_for(std::chrono::seconds(1));
pro.set_value("hello world");
std::this_thread::sleep_for(std::chrono::seconds(1));
}
int main() {
std::promise<std::string> pro;
std::thread t1(func, std::ref(pro));
auto fut = pro.get_future();
while (true) {
bool flag = false;
std::future_status ret = fut.wait_for(std::chrono::seconds(1));
switch (ret) {
case std::future_status::deferred: //只有async函數才有效
std::cout << "非同步線程還未啟動" << "\n";
break;
case std::future_status::ready:
std::cout << "結果已就緒" << "\n";
flag = true;
break;
case std::future_status::timeout:
std::cout << "等待超時" << "\n";
break;
default:
std::cout << "結果異常" << "\n";
}
if (flag == true) {
break;
}
std::cout << "do something..." << "\n";
std::this_thread::sleep_until(std::chrono::system_clock::now() + std::chrono::seconds(1));
}
std::cout << "輸出結果::" << fut.get() << "\n";
t1.join();
return 0;
}
packaged_task模板類
packaged_task包裝了一個可調用對象包裝器類對象,內部管理著一個future對象.
與promise用法類似.區別是promise只管理著future對象,而packaged_task還具備可調用對象的功能.
- 定義
template< class > class packaged_task;
template< class R, class ...Args >
class packaged_task<R(Args...)>; //必須顯式指定模板參數
- 構造函數
packaged_task() noexcept; //不可傳給子線程,那有什麼用?
template <class F>
explicit packaged_task( F&& f );
packaged_task( const packaged_task& ) = delete; //禁止拷貝
packaged_task( packaged_task&& rhs ) noexcept;
- get_future
和promise類似
std::future<R> get_future();
常式:
#include <iostream>
#include <thread>
#include <functional>
#include<chrono>
#include<future>
#include<string>
class Base {
public:
using funcptr = std::string(*)(std::string, int num);
public:
std::string operator()(std::string msg) {
return std::string("operator(): " + msg);
}
operator funcptr() { //若類型轉換成函數,可以通過仿函數方式直接使用對象()進行調用;但如果與operator()的函數指針類型相同,則只會使用operator(),而不會調用operator T(),即operator T()被隱藏.
return Showmsg; //為了區分兩者,可使用不同的函數指針類型.
}
static std::string Showmsg(std::string msg, int num) {
return std::string("showmsg(): " + msg + std::to_string(num));
}
std::string func(std::string msg) {
return std::string("func(): " + msg);
}
private:
};
int main() {
std::cout << Base()("hello") << "\n"; //operator ()()
std::cout << Base()("hello", 1) << "\n"; //operator T()()
std::cout << Base() << "\n"; //operator T()
Base b;
std::packaged_task<std::string(std::string)> p_task1(b);
std::packaged_task<std::string(std::string, int)> p_task2(b);
std::packaged_task<std::string(std::string, int)> p_task3(std::bind(Base::Showmsg, "hello", 3)); //最好的用法,是讓bind自動推導模板參數
std::packaged_task<std::string(std::string)> p_task4(std::bind(&Base::func, &b,std::placeholders::_1));
p_task1("p_tast1 hello");
p_task2("p_tast2 hello", 2);
p_task3("p_task3 hello", 3);
p_task4("p_task4 hello");
std::future<std::string> fut1 = p_task1.get_future();
std::future<std::string> fut2 = p_task2.get_future();
std::future<std::string> fut3 = p_task3.get_future();
std::future<std::string> fut4 = p_task4.get_future();
puts("");
std::cout << fut1.get() << "\n";
std::cout << fut2.get() << "\n";
std::cout << fut3.get() << "\n";
std::cout << fut4.get() << "\n";
return 0;
}
async模板函數
async是C++11提供用於簡化併發編程的模板函數,async函數同樣封裝有future對象,能夠將非同步任務的結果(return_value)保存在內部的future對象中,且該future對象為async的返回值,便於提取非同步任務的結果.
函數模板
std::async
非同步地運行函數 f,並返回最終將保有該函數調用結果的 std::future。
template< class Function, class... Args>
std::future<std::result_of_t<std::decay_t<Function>(std::decay_t<Args>...)>>
async( Function&& f, Args&&... args );
template< class Function, class... Args >
std::future<std::result_of_t<std::decay_t<Function>(std::decay_t<Args>...)>>
async( std::launch policy, Function&& f, Args&&... args );
參數:
f:可調用對象,這個對象在子線程中被作為任務函數使用
Args:傳遞給 f 的參數(實參)
policy:可調用對象·f的執行策略
策略 | 說明 |
---|---|
std::launch::async | 調用async函數時創建新的線程執行任務函數 |
std::launch::deferred | 調用async函數時不執行任務函數,直到調用了future的get()或者wait()時才執行任務(這種方式不會創建新的線程) |
std::launch::async|std::launch::deferred | 自動選擇非同步或延遲執行任務,具體取決於系統負載和資源可用性等因素。 |
註:policy == std::launch::async|std::launch::deferred時,和預設不帶policy參數的async行為是完全一樣的,都是未定義的.
此時如果 policy 是 std::launch::async | std::launch::deferred 或者設置了額外位,那麼就會回退到推遲調用或其他由實現定義的策略。
優點:
使用async()函數,是多線程操作中最簡單的一種方式,不需要自己創建線程對象,並且可以得到子線程函數的返回值。
常式:
#include <iostream>
#include <thread>
#include <functional>
#include<chrono>
#include<future>
#include<string>
int func(std::string msg,int x) {
std::this_thread::sleep_for(std::chrono::seconds(1));
std::cout<<"thread_id: "<<std::this_thread::get_id() << " msg: " << msg << "\n";
return x; //返回給async中的future對象.
}
int main() {
std::cout<<"main thread_id: "<<std::this_thread::get_id()<<"\n";
std::future<int> fut1 = std::async(std::launch::async,func,"fut1",1); //立即創建新一個線程執行
std::future<int> fut2 = std::async(std::launch::deferred,func,"fut2",2); //fut.get()調用後,在主線程執行
auto fut3 = std::async(std::launch::async|std::launch::deferred,func,"fut3",3); //交由系統策略自動決定.
std::cout<<fut1.get()<<"\n";
std::cout<<fut2.get()<<"\n";
std::cout<<fut3.get()<<"\n";
return 0;
}
shared_future模板類
C++11中的std::shared_future是個模板類。與std::future類似,std::shared_future提供了一種訪問非同步操作結果的機制;
不同於std::future,std::shared_future允許多個線程等待同一個共用狀態;
不同於std::future僅支持移動操作,std::shared_future既支持移動操作也支持拷貝操作,而且多個shared_future對象可以引用相同的共用狀態。
std::shared_future還允許一旦共用狀態就緒就可以多次檢索共用狀態下的值(A shared_future object behaves like a future object, except that it can be copied, and that more than one shared_future can share ownership over their end of a shared state. They also allow the value in the shared state to be retrieved multiple times once ready)。
std::shared_future對象可以通過std::future對象隱式轉換,也可以通過顯示調用std::future::share顯示轉換,在這兩種情況下,原std::future對象都將變得無效。
共用狀態(shared state)的生存期至少要持續到與之關聯的最後一個對象被銷毀為止。與std::future不同,通過shared_future::get檢索的值不會釋放共用對象的所有權。
當你需要具有std::future的多個有效拷貝時會用到std::shared_future;或者多個使用者使用std::future時也會用到std::shared_future。
-
構造函數:
(1).不帶參數的預設構造函數,此對象沒有共用狀態,因此它是無效的,但是它可以被賦予一個有效值;
(2).拷貝構造:與const shared_future& x具有相同的共用狀態,並與之共用所有權;
(3).支持移動構造。
-
析構函數:銷毀shared_future對象,它是異常安全的。如果對象有效(即它可以訪問共用狀態),則將其與對象接觸關聯;如果它是與共用狀態關聯的唯一對象,則共用對象本身也將被銷毀。
-
get函數:
(1).當共用狀態就緒時,返回存儲在共用狀態中的值的引用(或拋出異常)。
(2).如果共用狀態尚未就緒(即provider提供者尚未設置其值或異常),則該函數將阻塞調用的線程直到就緒。
(3).當共用狀態就緒後,則該函數將解除阻塞並返回(或拋出),但與future::get不同,不會釋放其共用狀態,允許其它shared_future對象也訪問存儲的值。
(4).std::shared_future
::get()不返回任何值,但仍等待共用狀態就緒才返回或拋出。 -
operator=:
(1).拷貝賦值:該對象與const shared_future& rhs關聯到相同的共用狀態,並與之共用所有權;
(2).移動賦值:該對象獲取shared_future&& rhs的共用狀態,rhs不再有效。
-
valid函數:檢查共用狀態的有效性,返回當前的shared_future對象是否與共用狀態關聯。
-
wait函數:
(1).等待共用狀態就緒。
(2).如果共用狀態尚未就緒(即提供者尚未設置其值或異常),則該函數將阻塞調用的線程直到就緒。
(3).當共用狀態就緒後,則該函數將解除阻塞並void返回。
-
wait_for函數:
(1).等待共用狀態在指定的時間內(time span)準備就緒。
(2). 如果共用狀態尚未就緒(即提供者尚未設置其值或異常),則該函數將阻塞調用的線程直到就緒或已達到設置的時間。
(3).此函數的返回值類型為枚舉類future_status。此枚舉類有三種label:ready:共用狀態已就緒;timeout:在指定的時間內未就緒;deferred:共用狀態包含了一個延遲函數(deferred function)。
(4).如果共用狀態包含了一個延遲函數,則該函數不會阻塞,立即返回一個future_status::deferred值。
-
wait_until函數:
(1). 等待共用狀態在指定的時間點(time point)準備就緒。
(2). 如果共用狀態尚未就緒(即提供者尚未設置其值或異常),則該函數將阻塞調用的線程直到就緒或已達到指定的時間點。
(3).此函數的返回值類型為枚舉類future_status。
(4).如果共用狀態包含了一個延遲函數,則該函數不會阻塞,立即返回一個future_status::deferred值。