unordered_map<int, string> m = { {1, "one"}, {2, "two"}, {3, "three"} }; C++Copy
unordered_map<string, int> demo; demo["abc"] = 1;