摘要: 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 阅读全文
posted @ 2013-10-25 17:02 RubbyZhang 阅读(460) 评论(0) 推荐(0) 编辑