std::begin(std::initializer_list)

 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
 
template< class E >
const E* begin( initializer_list<E> il ) noexcept;
(C++11 起)
(C++14 前)
template< class E >
constexpr const E* begin( initializer_list<E> il ) noexcept;
(C++14 起)

std::begininitializer_list 的重载返回指向 il 首元素的指针。

参数

il - initializer_list

返回值

il.begin()

示例

#include <iostream>
#include <initializer_list>
 
int main() 
{
    std::initializer_list<int> il = {3, 1, 4, 1};
    for(auto it = std::begin(il); it != std::end(il); ++it) {
        std::cout << *it << '\n';
    }
}

输出:

3
1
4
1

参阅

返回指向首元素的指针
(公开成员函数)