C++ multimap cend() 函数用于返回一个常量迭代器,该迭代器位于 multimap 中最后一个条目的旁边。
注意:-这是一个占位符。此位置不存在元素,尝试访问是未定义的行为。
用法
const_iterator cend() const noexcept; //since C++ 11
const_iterator 是一个指向常量内容的迭代器。
参数
空
返回值
它返回一个常量迭代器,它指向 multimap 的最后一个元素旁边。
复杂度
恒定。
迭代器有效性
没有变化。
数据竞争
容器被访问。
异常安全
这个成员函数从不抛出异常。
例子1
让我们看看 cend() 函数的简单示例:
#include <iostream>
#include <map>
using namespace std;
int main ()
{
multimap<char,string> mymultimap;
mymultimap = {
{'a',"Java"},
{'b', "C++"},
{'b', "Python"},
{'a', "Android"}
};
// print content:
cout << "mymultimap contains:";
for (auto it = mymultimap.cbegin(); it != mymultimap.cend(); ++it)
cout << " [" << (*it).first << ':' << (*it).second << ']';
cout << '\n';
return 0;
}
输出:
mymultimap contains:[a:Java] [a:Android] [b:C++] [b:Python]
在上面的示例中,cend() 函数用于返回指向 mymultimap 多映射中最后一个元素旁边的 const_ 迭代器。
例子2
让我们看一个使用 for-each 循环遍历多重映射的简单示例:
#include <iostream>
#include <map>
#include <string>
#include <iterator>
#include <algorithm>
using namespace std;
int main() {
multimap<string, int> m;
m= {
{"Room1", 100},
{"Room2", 200},
{"Room1", 300},
{"Room1", 100}
};
// Create a multimap iterator and point to beginning of multimap
multimap<string, int>::iterator it = m.begin();
// Iterate over a multimap using std::for_each and Lambda function
for_each(m.cbegin(), m.cend(),
[](pair<string, int> element){
// Accessing KEY from element
string word = element.first;
// Accessing VALUE from element.
int count = element.second;
cout<<word<<" = "<<count<<endl;
});
return 0;
}
输出:
Room1 = 100 Room1 = 300 Room1 = 100 Room2 = 200
在上面的例子中,我们使用 STL 算法 std::for-each 来迭代多重映射。它将迭代每个 multimap 元素并调用我们提供的回调。
例子3
让我们看一个使用 while 循环迭代 multimap 的简单示例:
#include <iostream>
#include <map>
#include <string>
int main()
{
using namespace std;
multimap<int,string> mymultimap = {
{ 100, "Nikita"},
{ 100, "Deep" },
{ 200, "Priya" },
{ 300, "Suman" },
{ 200, "Aman" }};
multimap<int, string>::const_iterator it; // declare an iterator
it = mymultimap.cbegin(); // assign it to the start of the vector
while (it != mymultimap.cend()) // while it hasn't reach the end
{
cout << it->first << " = " << it->second << "\n";
// prin the value of the element it points to
++it; // and iterate to the next element
}
cout << endl;
}
输出:
100 = Nikita 100 = Deep 200 = Priya 200 = Aman 300 = Suman
在上面的例子中, cend() 函数用于返回一个 const_iterator 指向 mymultimap 多图中最后一个元素的旁边。
示例 4
让我们看一个简单的例子:
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
multimap<int,int> mymultimap = {
{ 10, 10},
{ 20, 20 },
{ 10, 30 } };
cout<<"Elements are:" <<endl;
for (auto it = mymultimap.cbegin(); it != mymultimap.cend(); ++it)
cout << it->first
<< " + "
<< it->second
<< " = "
<<it->first + it->second
<< '\n';
auto ite = mymultimap.cend();
cout << "end element (point next to the last):";
cout << "{" << ite->first << ", "
<< ite->second << "}\n";
return 0;
}
输出:
Elements are: 10 + 10 = 20 10 + 30 = 40 20 + 20 = 40 end element (point next to the last):{3, 0}
在上面的例子中, cend() 函数用于返回一个 const_iterator 指向 mymultimap 多图中最后一个元素的旁边。
相关用法
- C++ multimap clear()用法及代码示例
- C++ multimap crend()用法及代码示例
- C++ multimap crbegin()用法及代码示例
- C++ multimap cbegin()用法及代码示例
- C++ multimap key_comp()用法及代码示例
- C++ multimap empty()用法及代码示例
- C++ multimap insert()用法及代码示例
- C++ multimap lower_bound()用法及代码示例
- C++ multimap rend()用法及代码示例
- C++ multimap maxsize()用法及代码示例
- C++ multimap rend用法及代码示例
- C++ multimap get_allocator()用法及代码示例
- C++ multimap upper_bound()用法及代码示例
- C++ multimap key_comp用法及代码示例
- C++ multimap emplace()用法及代码示例
- C++ multimap equal_range()用法及代码示例
- C++ multimap rbegin用法及代码示例
- C++ multimap rbegin()用法及代码示例
- C++ multimap value_comp()用法及代码示例
- C++ multimap erase()用法及代码示例
注:本文由纯净天空筛选整理自 C++ multimap cend() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。