template < class Key, class T, class Pred = less<Key>, class A = allocator<T> >
class map{
...
typedef pair< const Key, T > value_type;
...
};
T & operator[] (Key k);
该成员函数返回 first 值为 k 的元素的 second 部分的引用。如果容器中没有元素的 first 值等于 k,则自动添加一个 first 值为 k 的元素。如果该元素的 second 成员变量是一个对象,则用无参构造函数对其初始化。#include <iostream> #include <map> //使用map需要包含此头文件 using namespace std; template <class T1,class T2> ostream & operator <<(ostream & o,const pair<T1,T2> & p) { //将pair对象输出为 (first,second)形式 o << "(" << p.first << "," << p.second << ")"; return o; } template<class T> void Print(T first,T last) {//打印区间[first,last) for( ; first != last; ++ first) cout << * first << " "; cout << endl; } typedef map<int,double,greater<int> > MYMAP; //此容器关键字是整型,元素按关键字从大到小排序 int main() { MYMAP mp; mp.insert(MYMAP::value_type(15,2.7)); pair<MYMAP::iterator,bool> p = mp.insert(make_pair(15,99.3)); if(!p.second) cout << * (p.first) << " already exists" << endl; //会输出 cout << "1) " << mp.count(15) << endl; //输出 1) 1 mp.insert(make_pair(20,9.3)); cout << "2) " << mp[40] << endl;//如果没有关键字为40的元素,则插入一个 cout << "3) ";Print(mp.begin(),mp.end());//输出:3) (40,0)(20,9.3)(15,2.7) mp[15] = 6.28; //把关键字为15的元素值改成6.28 mp[17] = 3.14; //插入关键字为17的元素,并将其值设为3.14 cout << "4) ";Print(mp.begin(),mp.end()); return 0; }程序的输出结果如下:
greater <int> >
最右边的两个>
之间要有空格,否则 Dev C++ 会将它们当作右移运算符,导致编译出错。在 Visual Studio 2010 中无此问题。mp.operator[](40);
,其返回值是关键字为 40 的那个元素(不论是原有的还是新插入的)的 second 成员变量的引用。第 29 行和第 30 行的道理与此类似。Copyright © 广州京杭网络科技有限公司 2005-2025 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有