map的我的理解

在理解以前贴一份代码:c++ #include <bits/stdc++.h> using namespace std; int main() { map<int, int> mp; mp[2] = 10; mp[3] = 11; mp[4] = 10; if(mp[4] == 10){ cout<<"yeah~~~"<<endl;
相关文章
相关标签/搜索