檢查元素數量

容器 std::map 有一個成員函式 empty(),它返回 truefalse,具體取決於地圖是否為空。成員函式 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;
}