次の方法で共有


concurrent_unordered_map::at メソッド

concurrent_unordered_map 内の指定されたキー値を持つ要素を検索します。 このメソッドは同時実行セーフです。

mapped_type& at(
   const key_type& _Keyval
);

const mapped_type& at(
   const key_type& _Keyval
) const;

パラメーター

  • _Keyval
    検索するキー値。

戻り値

見つかった要素のデータ値への参照。

解説

引数のキー値が見つからない場合、この関数は、out_of_range クラスのオブジェクトをスローします。

必要条件

ヘッダー: concurrent_unordered_map.h

名前空間: concurrency

参照

関連項目

concurrent_unordered_map クラス