使用C++中的map容器定义一个mp,当你执行if语句判断mp[3]是否为1时,那么如果mp[3]以前不存在,此时mp[3]就会被无参初始化,second赋值为0。
以下的程序可以证明这一点。执行了第8行的判断后,12行的输出可以看到size已经由0变1,而13行也显示出了mp[3]的内容,即0.
1 #include <iostream> 2 #include <map> 3 using namespace std; 4 int main() 5 { 6 map<int, int> mp; 7 cout << mp.size() << endl; 8 if (mp[3] == 1) 9 { 10 cout << "yes?" << endl; 11 } 12 cout << mp.size() << endl; 13 cout << mp[3] << endl; 14 }
原文:http://www.cnblogs.com/forcheryl/p/3986026.html