std::map::at
提供: cppreference.com
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| T& at( const Key& key ); |
(1) | (C++11およびそれ以降) |
| const T & at( const Key& key ) const; |
(2) | (C++11およびそれ以降) |
keyにキーボードショートカットを持つ要素のマッピングされた値への参照を返します。そのような要素が存在しない場合は、タイプstd::out_of_rangeの例外がスローされます.Original:
Returns a reference to the mapped value of the element with key equivalent to
key. If no such element exists, an exception of type std::out_of_range is thrown.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
| key | - | 検索する要素のキー
Original: the key of the element to find The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
要求された要素のマッピングされた値への参照
Original:
Reference to the mapped value of the requested element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 例外
std::out_of_rangeコンテナが指定
key持つ要素を持っていない場合Original:
std::out_of_range if the container does not have an element with the specified
keyThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 複雑
Logarithmic in the size of the container.
[編集] も参照してください
| 指定された要素にアクセスします Original: access specified element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |

