public member function
<set>

std::set::cend

const_iterator cend() const noexcept;
返回指向结尾的 const_iterator
返回一个const_iterator指向容器的尾后元素。

All iterators in set containers are constant iterators (including bothconst_iteratoriteratormember types). These cannot be used to modify the contents they point to, but can be increased and decreased normally (unless they are themselves also const).

参数



返回值

Aconst_iterator指向序列末尾的元素。

成员类型const_iterator是一个指向 const 元素的双向迭代器类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// set::cbegin/cend
#include <iostream>
#include <set>

int main ()
{
  std::set<int> myset = {50,20,60,10,25};

  std::cout << "myset contains:";
  for (auto it=myset.cbegin(); it != myset.cend(); ++it)
    std::cout << ' ' << *it;

  std::cout << '\n';

  return 0;
}

输出
myset contains: 10 20 25 50 60 


复杂度

常量。

迭代器有效性

没有变化。

数据竞争

访问容器。
并发访问set的元素是安全的。

异常安全

无异常保证:此成员函数从不抛出异常。
还可以保证返回的迭代器的复制构造或赋值永远不会引发异常。

另见