重載set的operator

重載set的operator<()函數

struct A
{
  int x;
  int y;
  int z;
/*
  bool operator < (const A & other)const
  {
    return (x == other.x) ? y > other.y : x > other.x;
  }
*/
};              // end of struct A
  bool operator < (const A& i1, const A& i2)
  {
    return (i1.x == i2.x) ? i1.y > i2.y : i1.x > i2.x;
  }

bool myfunction(int i, int j){return i > j;}
int main()
{
    A a1;
    a1.x = 0;
    a1.y = 1;
    a1.z = 2;
    A a2;
    a2.x = 0;
    a2.y = 1;
    a2.z = 2;
    set<A> sa;
    sa.insert(a1);
    sa.insert(a2);

    return 0;
}

operator < 作爲成員函數是得聲明爲const函數,表示不能修改A類對象的成員變量,保證被比較的兩個對象內容不被修改。

operator< 作爲獨立函數聲明時需要將兩個對象都聲明爲const類型。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章