摘要:
MAP赋值和插入,对于相同ID的处理方式不同,前者为替换 后者为插入失败#include #include #include using namespace std;int main(){ map mapStudent; pair::iterator, bool> Insert_Pair; mapStudent[1] = "student_one"; mapStudent[1] = "student_one2"; cout ::iterator iter; for(iter = mapStudent.begin(); iter != mapStud 阅读全文