检查元素数量
容器 std::map
有一个成员函数 empty()
,它返回 true
或 false
,具体取决于地图是否为空。成员函数 size()
返回存储在 std::map
容器中的元素数:
std::map<std::string , int> rank {{"facebook.com", 1} ,{"google.com", 2}, {"youtube.com", 3}};
if(!rank.empty()){
std::cout << "Number of elements in the rank map: " << rank.size() << std::endl;
}
else{
std::cout << "The rank map is empty" << std::endl;
}