C++中stl的map

總結: 在map中插入數據有三種方法: 1.用insert插入pair數據: mapstudent.insert(pair<int,string>(1,"studentone")); 2.用insert插入value_type數據:mapstudent.insert(map<int,string>::value_type(1,"student_one")); 3.用類似數組的方式插入數據:maps
相關文章
相關標籤/搜索