I tried to overload the operator !=
struct Antichoc
{
quint8 Chariot;
quint8 Frittage;
bool operator!=(const Antichoc &a, const Antichoc &b)
{
return a.Chariot != b.Chariot || a.Frittage != b.Frittage;
}
}
我得到错误:
bool Antichoc::operator!=(const Antichoc&, const Antichoc&) 必须只有一个参数
为什么这个错误