std::begin(std::initializer_list)
提供:cppreference.com
< cpp | utility | initializer list
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| template< class E > const E* begin( initializer_list<E> il ); |
(C + + 11以来) | |
std::begin用
initializer_listの専門はilの最初の要素へのポインタを返します。.Original:
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.
目次 |
[編集] パラメータ
| il | - | an initializer_list
|
[編集] 値を返します
il.begin()
[編集] 例外
[編集] 例
#include <iostream> int main() { // range-based for uses std::begin and std::end to iterate // over a given range; in this case, it's an initializer list for (int i : {3, 1, 4, 1}) { std::cout << i << '\n'; } }
Output:
3 1 4 1
[編集] も参照してください
| ポインタが最初の要素を返します Original: returns a pointer the first element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |