C++ 参考手册

位置:首页 > C++ 参考手册 >迭代器库 > std::default_sentinel_t, std::default_sentinel

定义于头文件 <iterator>
struct default_sentinel_t { };
(1) (C++20 起)
inline constexpr default_sentinel_t default_sentinel{};
(2) (C++20 起)
1) default_sentinel_t 是用于表示范围结尾的空类类型。能与知晓其范围边界的迭代器类型(例如 std::counted_iterator )一同使用它。
2) default_sentineldefault_sentinel_t 类型常量。

示例

#include <iterator>
#include <algorithm>
#include <list>
#include <iostream>
 
int main()
{
    std::list<int> l{3,1,4,1,5,9,2,6};
 
    std::ranges::copy(std::counted_iterator(std::begin(l), 4),
        std::default_sentinel, std::ostream_iterator<int>{std::cout, " "});
}

输出:

3 1 4 1

参阅

std::basic_istream 读取的输入迭代器
(类模板)
std::basic_streambuf 读取的输入迭代器
(类模板)
对到范围结尾距离进行跟踪的迭代器适配器
(类模板)