0

当我尝试执行此擦除功能以从我的向量中删除“2”时,我遇到了一个错误列表。我不确定问题出在哪里。帮助将不胜感激!

STRUCT MyInt

struct MyInt
{
friend ostream &operator<<(ostream &printout, const MyInt &Qn)
{
   printout<< Qn.value << endl;
   return printout;
}

  int value;
  MyInt (int value) : value (value) {}
};

结构我的东西

struct MyStuff
{
  std::vector<MyInt> values;

  MyStuff () : values ()
  { }
};

主要的

int main()
{
MyStuff mystuff1,mystuff2;

for (int x = 0; x < 5; ++x)
    {
        mystuff2.values.push_back (MyInt (x));
    }

vector<MyInt>::iterator VITER;
mystuff2.values.push_back(10);
mystuff2.values.push_back(7);

    //error points to the line below
mystuff2.values.erase(std::remove(mystuff2.values.begin(), mystuff2.values.end(), 2), mystuff2.values.end());

    return 0;

}

错误信息

stl_algo.h:在函数 '_OutputIterator std::remove_copy(_InputInputIterator, _InputIterator, const_Tp&) [with_InputIterator = __gnu_cxx:__normal_iterator >>, OutputIterator = __ gnu_cxx::__normal iterator >>, Tp = int]'

运算符==' 不匹配

错误消息显示该特定行实际上违反了 stl_algo.h 的第 1267、1190、327、1263、208、212、216、220、228、232、236 行

4

2 回答 2

2

您需要==为 class 重载运算符MyInt

例如:

struct MyInt
{

friend ostream &operator<<(ostream &printout, const MyInt &Qn)
{
   printout<< Qn.value << endl;
   return printout;
}

// Overload the operator 
bool operator==(const MyInt& rhs) const
{
  return this->value == rhs.value;
}

  int value;
  MyInt (int value) : value (value) {}
};
于 2012-05-13T18:05:43.857 回答
1

有两个问题。您看到的错误是告诉您您尚未定义 int 和您的类型之间的相等比较。在您的结构中,您应该定义一个相等运算符

bool operator==(int other) const
{
    return value == other;
}

当然,在另一个方向定义一个全局运算符:

bool operator==(int value1, const MyInt& value2)
{
    return value2 == value1;
}
于 2012-05-13T18:09:15.413 回答