STL - MAP - 将字符串作为键和类对象添加为值

时间:2016-01-22 04:54:04

标签: c++ templates dictionary stl

该代码解释了对映射的插入,其中键类型是字符串,值是对类对象的引用。但是,有3个重载函数,例如重载=运算符,重载<运算符和重载==运算符..任何人都可以解释一下为什么这里的重载?

#include <iostream>
    #include <map>
    using namespace std;

    class AAA
    {
       friend ostream &operator<<(ostream &, const AAA &);

       public:
          int x;
          int y;
          float z;

          AAA();
          AAA(const AAA &);
          ~AAA(){};
          AAA &operator=(const AAA &rhs);
          int operator==(const AAA &rhs) const;
          int operator<(const AAA &rhs) const;
    };

    AAA::AAA()   // Constructor
    {
       x = 0;
       y = 0;
       z = 0;
    }

    AAA::AAA(const AAA &copyin)   // Copy constructor to handle pass by value.
    {                             
       x = copyin.x;
       y = copyin.y;
       z = copyin.z;
    }

    ostream &operator<<(ostream &output, const AAA &aaa)
    {
       output << aaa.x << ' ' << aaa.y << ' ' << aaa.z << endl;
       return output;
    }

    AAA& AAA::operator=(const AAA &rhs)
    {
       this->x = rhs.x;
       this->y = rhs.y;
       this->z = rhs.z;
       return *this;
    }

    int AAA::operator==(const AAA &rhs) const
    {
       if( this->x != rhs.x) return 0;
       if( this->y != rhs.y) return 0;
       if( this->z != rhs.z) return 0;
       return 1;
    }

    int AAA::operator<(const AAA &rhs) const
    {
       if( this->x == rhs.x && this->y == rhs.y && this->z < rhs.z) return 1;
       if( this->x == rhs.x && this->y < rhs.y) return 1;
       if( this->x < rhs.x ) return 1;
       return 0;
    }

    main()
    {
       map<string, AAA> M;
       AAA Ablob ;

       Ablob.x=7;
       Ablob.y=2;
       Ablob.z=4.2355;
       M["A"] = Ablob;

       Ablob.x=5;
       M["B"] = Ablob;

       Ablob.z=3.2355;
       M["C"] = Ablob;

       Ablob.x=3;
       Ablob.y=7;
       Ablob.z=7.2355;
       M["D"] = Ablob;

       for( map<string, AAA>::iterator ii=M.begin(); ii!=M.end(); ++ii)
       {
           cout << (*ii).first << ": " << (*ii).second << endl;
       }

       return 0;
    }

1 个答案:

答案 0 :(得分:0)

他们不是超载,他们是运营商的定义。在这种特殊情况下,复制构造函数和赋值运算符执行默认值所做的操作,因此应省略它们。比较运算符应返回bool而不是int,并且可以更有效地编写<比较。在给出的代码中都没有使用比较,因此它们也是多余的。如果AAA是地图中的关键,那么它们是必要的,但由于它是值,因此不需要它们。

顺便提一下,您可以将for循环定义为

for (auto ii = M.begin(); ii != M.end(); ++i)

除非你的编译器足够大,否则它不支持使用auto