C++でmapのkeyの数を数える方法は何ですか?
mapのsize()関数を使用して、map内のキーの数をカウントすることができます。size()関数は、map内のキーの数、つまりキーの数を返します。以下はサンプルコードです:
#include <iostream>
#include <map>
int main() {
std::map<int, std::string> myMap;
myMap[1] = "Apple";
myMap[2] = "Banana";
myMap[3] = "Orange";
int keyCount = myMap.size();
std::cout << "The number of keys in the map is: " << keyCount << std::endl;
return 0;
}
出力結果は:
The number of keys in the map is: 3