在C ++中比较结构时发现没有==运算符 [英] No == operator found while comparing structs in C++

查看:114
本文介绍了在C ++中比较结构时发现没有==运算符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

比较以下结构的两个实例,我收到一个错误:

Comparing two instances of the following struct, I receive an error:

struct MyStruct1 {
    Position(const MyStruct2 &_my_struct_2, const int _an_int = -1) :
        my_struct_2(_my_struct_2),
        an_int(_an_int)
    {}

    std::string toString() const;

    MyStruct2 my_struct_2;
    int an_int;
};

错误是:


错误C2678:binary'==':无操作符
,其中包含类型为myproj :: MyStruct1的左侧操作数
(或
不可接受转换)

error C2678: binary '==' : no operator found which takes a left-hand operand of type 'myproj::MyStruct1' (or there is no acceptable conversion)

为什么?

推荐答案

p>在C ++中, struct s没有默认生成的比较运算符。你需要自己写:

In C++, structs do not have a comparison operator generated by default. You need to write your own:

bool operator==(const MyStruct1& lhs, const MyStruct1& rhs)
{
    return /* your comparison code goes here */
}

这篇关于在C ++中比较结构时发现没有==运算符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆