std::array::operator[]
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
reference operator[]( size_type pos ); |
(C++11およびそれ以降) | |
const_reference operator[]( size_type pos ) const; |
(C++11およびそれ以降) | |
指定された場所の
pos
の要素への参照を返します。境界のチェックは行われません.Original:
Returns a reference to the element at specified location
pos
. No bounds checking is performed.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.
目次 |
[編集] パラメータ
pos | - | 戻り値となる要素の位置
Original: position of the element to return 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 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.
[編集] 複雑
定数
Original:
Constant
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.
[編集] 例
次のコードは、
operator[]
からの読み取りとstd::array<int>に書き込みを使用しています
Original:
The following code uses
operator[]
read from and write to a std::array<int>:
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.
このコードを実行します
#include <array> #include <iostream> int main() { std::array<int> numbers {2, 4, 6, 8}; std::cout << "Second element: " << numbers[1] << '\n'; numbers[0] = 5; std::cout << "All numbers:"; for (auto i : numbers) { std::cout << ' ' << i; } std::cout << '\n'; }
出力:
Second element: 4 All numbers: 5 4 6 8
[編集] も参照してください
指定された要素にアクセスします。境界チェックを行います。 (パブリックメンバ関数) |