std::promise
提供: C++入門
スポンサーリンク
std::promise とは、C++のスレッド用のライブラリです。std::threadとstd::future、std::promiseを使用して、別スレッドの終了を待ち、処理の結果を取得するような非同期処理を実現します。
読み方
- std::promise
- えすてぃーでぃー ぷろみす
概要
- 戻り値、または、例外を扱えます。
- 戻り値の型は、テンプレートで指定します。
- 例外は、任意の型を扱えます。
- std::futureは、スレッドの完了を待ちます(同期)。
- std::fetureオブジェクトは、std::promiseオブジェクトのget_future()で作成します。
std::promiseとstd::thread で実現する方法と std::async で実現する方法があります。
ヘッダファイル
#include <future>
std::promiseとstd::threadの例
ソースコード std_promise1.cpp
#include <iostream> #include <future> #include <thread> #include <unistd.h> // sleep using namespace std; int foo (std::promise<int>& pi, int& num) { cout << "execute: " << __PRETTY_FUNCTION__ << endl; for (int i = 0; i < 10; i++) { num++; sleep (1); } pi.set_value(num); } int main(int argc, char const* argv[]) { try { std::promise<int> pi; int num = 0; std::thread t1(foo, std::ref(pi), std::ref(num)); // スレッドを開始 cout << num << endl; std::future<int> f0 = pi.get_future(); // 非同期オブジェクトを受け取る宣言 int r = f0.get(); // 同期でタスク処理を待つ cout << r << endl; // 結果を表示 cout << num << endl; t1.join(); // スレッドの終了を待つ } catch (std::exception& e) { cerr << e.what() << endl; } return 0; }
コンパイル
g++49 -std=c++11 -I/usr/local/lib/gcc49/include/c++/ \ -Wl,-rpath=/usr/local/lib/gcc49 -pthread std_promise1.cpp -o std_promise1
実行例
% ./std_promise1 0 execute: int foo(std::promise<int>&, int&) 10 10
関連項目
- スレッドプログラミング
- std::async
- std::promise
- std::packaged_task
ツイート
スポンサーリンク