std::optional<T>::begin
来自 cppreference.com
constexpr iterator begin() noexcept; |
(自 C++26 起) | |
constexpr const_iterator begin() const noexcept; |
(自 C++26 起) | |
如果 *this 包含一个值,则返回指向该值的迭代器。否则,返回一个末尾后的迭代器值。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
如果 has_value() 为 true,则返回指向所包含值的迭代器。否则,返回一个末尾后的迭代器。
[编辑] 复杂度
常数。
[编辑] 备注
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_optional_range_support |
202406L | (C++26) | std::optional 的范围支持 |
[编辑] 示例
运行此代码
#include <optional> #include <print> #include <vector> int main() { constexpr std::optional<int> none = std::nullopt; constexpr std::optional<int> some = 42; static_assert(none.begin() == none.end()); static_assert(some.begin() != some.end()); // ranged-for loop support for (int i : none) std::println("'none' has a value of {}", i); for (int i : some) std::println("'some' has a value of {}", i); std::optional<std::vector<int>> many({0, 1, 2}); for (const auto& v : many) std::println("'many' has a value of {}", v); }
输出
'some' has a value of 42 'many' has a value of [0, 1, 2]
[编辑] 另请参阅
(C++26) |
返回指向末尾的迭代器 (公共成员函数) |