标签: c++ c++11 stdmap
map[key] = value和map.insert(make_pair(key, value))之间有区别吗?
map[key] = value
map.insert(make_pair(key, value))