bool valid() const noexcept;
概要
共有状態を持っているか確認する
戻り値
*this
が共有状態を持っていればtrue
を返し、そうでなければfalse
を返す。
例外
投げない
例
#include <cassert>
#include <future>
int main()
{
std::promise<int> p;
std::shared_future<int> f;
assert(!f.valid()); // まだ共有状態を持っていない
f = p.get_future().share();
assert(f.valid()); // 共有状態を持っている
}
xxxxxxxxxx
#include <cassert>
#include <future>
int main()
{
std::promise<int> p;
std::shared_future<int> f;
assert(!f.valid()); // まだ共有状態を持っていない
f = p.get_future().share();
assert(f.valid()); // 共有状態を持っている
}
出力
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.0 ✅
- ICC: ??
- Visual C++: 2012 ✅