• <small id='qn9jO'></small><noframes id='qn9jO'>

    <tfoot id='qn9jO'></tfoot>
      <bdo id='qn9jO'></bdo><ul id='qn9jO'></ul>

    <legend id='qn9jO'><style id='qn9jO'><dir id='qn9jO'><q id='qn9jO'></q></dir></style></legend>

    <i id='qn9jO'><tr id='qn9jO'><dt id='qn9jO'><q id='qn9jO'><span id='qn9jO'><b id='qn9jO'><form id='qn9jO'><ins id='qn9jO'></ins><ul id='qn9jO'></ul><sub id='qn9jO'></sub></form><legend id='qn9jO'></legend><bdo id='qn9jO'><pre id='qn9jO'><center id='qn9jO'></center></pre></bdo></b><th id='qn9jO'></th></span></q></dt></tr></i><div id='qn9jO'><tfoot id='qn9jO'></tfoot><dl id='qn9jO'><fieldset id='qn9jO'></fieldset></dl></div>

      1. 比较 C++ 中的结构时找不到 == 运算符

        时间:2023-07-01

          <legend id='36ZlQ'><style id='36ZlQ'><dir id='36ZlQ'><q id='36ZlQ'></q></dir></style></legend>
          <i id='36ZlQ'><tr id='36ZlQ'><dt id='36ZlQ'><q id='36ZlQ'><span id='36ZlQ'><b id='36ZlQ'><form id='36ZlQ'><ins id='36ZlQ'></ins><ul id='36ZlQ'></ul><sub id='36ZlQ'></sub></form><legend id='36ZlQ'></legend><bdo id='36ZlQ'><pre id='36ZlQ'><center id='36ZlQ'></center></pre></bdo></b><th id='36ZlQ'></th></span></q></dt></tr></i><div id='36ZlQ'><tfoot id='36ZlQ'></tfoot><dl id='36ZlQ'><fieldset id='36ZlQ'></fieldset></dl></div>

              <small id='36ZlQ'></small><noframes id='36ZlQ'>

                • <bdo id='36ZlQ'></bdo><ul id='36ZlQ'></ul>

                    <tbody id='36ZlQ'></tbody>
                • <tfoot id='36ZlQ'></tfoot>
                • 本文介绍了比较 C++ 中的结构时找不到 == 运算符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

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

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

                  struct MyStruct1 {
                      MyStruct1(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:二进制==":无运算符found 需要一个左操作数'myproj::MyStruct1' 类型(或那里是不可接受的转换)

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

                  为什么?

                  推荐答案

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

                  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++ 中的结构时找不到 == 运算符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:C 结构体大小不一致 下一篇:C++ 类/结构成员的默认可见性

                  相关文章

                  1. <i id='1n2Nq'><tr id='1n2Nq'><dt id='1n2Nq'><q id='1n2Nq'><span id='1n2Nq'><b id='1n2Nq'><form id='1n2Nq'><ins id='1n2Nq'></ins><ul id='1n2Nq'></ul><sub id='1n2Nq'></sub></form><legend id='1n2Nq'></legend><bdo id='1n2Nq'><pre id='1n2Nq'><center id='1n2Nq'></center></pre></bdo></b><th id='1n2Nq'></th></span></q></dt></tr></i><div id='1n2Nq'><tfoot id='1n2Nq'></tfoot><dl id='1n2Nq'><fieldset id='1n2Nq'></fieldset></dl></div>
                  2. <small id='1n2Nq'></small><noframes id='1n2Nq'>

                    <tfoot id='1n2Nq'></tfoot>
                      • <bdo id='1n2Nq'></bdo><ul id='1n2Nq'></ul>

                      <legend id='1n2Nq'><style id='1n2Nq'><dir id='1n2Nq'><q id='1n2Nq'></q></dir></style></legend>