Answers for "how to loop through a map C++"

1

iterating over a hashmap

for(Map.Entry<String, Integer> entry : hashMap.entrySet()) {
    String key = entry.getKey();
    Integer value =  entry.getValue();
    //do something with the key and value
}
Posted by: Guest on November-19-2020
1

through map c++

//Since c++17
for (auto& [key, value]: myMap) {
    cout << key << " has value " << value << endl;
}
//Since c++11
for (auto& kv : myMap) {
    cout << kv.first << " has value " << kv.second << endl;
}
Posted by: Guest on April-30-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language