C ++ map cbegin()函数用于返回指向map容器第一个元素的常量迭代器。
const_iterator cbegin() const noexcept; //C++ 11 之后
没有
它返回一个const_iterator,指向地图的第一个元素。
让我们来看一个简单的cbegin()函数示例。
#include <iostream>
#include <map>
using namespace std;
int main ()
{
map<char,string> mymap;
mymap['b'] = "Java";
mymap['a'] = "C++";
mymap['c'] = "SQL";
// 显示内容:
for (auto it = mymap.cbegin(); it != mymap.cend(); ++it)
cout <<(*it).first << " => " << (*it).second << '\n';
return 0;
}输出:
a => C++ b => Java c => SQL
在上面,cbegin()函数用于返回一个常量迭代器,该迭代器指向mymap映射中的第一个元素。
让我们看一个简单的示例,使用for-each循环遍历地图。
#include <iostream>
#include <map>
#include <string>
#include <iterator>
#include <algorithm>
using namespace std;
int main() {
map<string, int> m;
m["Room1"] = 100;
m["Room2"] = 200;
m["Room3"] = 300;
//使用std::for each和Lambda函数遍历一个map
for_each(m.cbegin(), m.cend(),
[](pair<string, int> element){
// 从元素访问KEY
string word = element.first;
// Accessing VALUE from element.
int count = element.second;
cout<<word<<" = "<<count<<endl;
});
return 0;
}输出:
Room1 = 100 Room2 = 200 Room3 = 300
在上面的示例中,我们使用STL算法std :: for-each遍历地图。它将在每个map元素上进行迭代,并调用我们提供的回调。
让我们看一个使用while循环迭代地图的简单示例。
#include <iostream>
#include <map>
#include <string>
int main()
{
using namespace std;
map<int,string> mymap = {
{ 100, "Nikita"},
{ 200, "Deep" },
{ 300, "Priya" },
{ 400, "Suman" },
{ 500, "Aman" }};
map<int, string>::const_iterator it; // 声明一个迭代器
it = mymap.cbegin(); // 把它赋给向量的起点
while (it != mymap.cend())
{
cout << it->first << " = " << it->second << "\n";
// 打印它所指向的元素的值
++it; // 并迭代到下一个元素
}
cout << endl;
}输出:
100: Nikita 200: Deep 300: Priya 400: Suman 500: Aman
在上面的示例中,cbegin()函数用于返回指向mymap容器中第一个元素的常量迭代器。
让我们来看另一个简单的实例。
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
map<int,int> mymap = {
{ 10, 10},
{ 20, 20 },
{ 30, 30 } };
cout<<"元素是:" <<endl;
for (auto it = mymap.cbegin(); it != mymap.cend(); ++it)
cout << it->first
<< " + "
<< it->second
<< " = "
<<it->first + it->second
<< '\n';
auto ite = mymap.cbegin();
cout << "第一个元素是: ";
cout << "{" << ite->first << ", "
<< ite->second << "}\n";
return 0;
}输出:
元素是:
10 + 10 = 20
20 + 20 = 40
30 + 30 = 60
第一个元素是: {10, 10}在上面的示例中,cbegin()函数用于返回指向mymap容器中第一个元素的迭代器。