How could I create a copy of an unordered_map from an existing one? Could I use assignment operator or I need to iterate it one by one? Also, I am using shared_ptr as the value in the map. Did I need to take extra care because it is shared_ptr?
typedef unordered_map<string, shared_ptr<classA>>MAP1;
MAP1 map1;
map1["abc"] = make_shared<classA>();
MAP2 map2 = map1; ?? //can I use assignment operator??
Thanks.
MAP2is so we'll have a hard time answering your question. And really you should refrain from using all-caps identifiers, they are usually reserved for macros. – Matthieu M. Jan 12 '11 at 7:38