god2019 2021-12-14 17:17 采纳率: 80%
浏览 19
已结题

运行代码的时候出现LNK2005错误operator==()已经在其中一个被定义

#ifndef POSTYPE_H
#define POSTYPE_H
struct PosType
{
    int row, col;
};
PosType operator+(const PosType p1, const PosType p2) {
    PosType p;
    p.row = p1.row + p2.row;
    p.col = p1.col + p2.col;
    return p;
}
bool operator== (const PosType p1, const PosType p2) {
    return p1.row == p2.row && p1.col == p2.col;
}
#endif

出问题的代码在这个头文件中定义,因为要使用所以在另一个头文件MAZE.H中包含了该头文件,
运行程序的时候,在main中包含了MAZE.H的头文件,运行后提示错误:
LNK2005 "bool __cdecl operator==(struct PosType,struct PosType)" (??8@YA_NUPosType@@0@Z) 已经在 Maze.obj 中定义 Stageone F:\workspace\Stageone\源.obj
LNK2005 "struct PosType __cdecl operator+(struct PosType,struct PosType)" (??H@YA?AUPosType@@U0@0@Z) 已经在 Maze.obj 中定义 Stageone F:\workspace\Stageone\源.obj

请大大们帮忙看看要怎么修改?

  • 写回答

2条回答 默认 最新

  • 关注

    运算符的重载要么作为类的成员方法,要么做成友元函数。你这里既不是成员方法,也不是友元函数。
    代码修改如下:

    #ifndef POSTYPE_H
    #define POSTYPE_H
    struct PosType
    {
        int row, col;
    
        PosType operator+(const PosType p1, const PosType p2) {
            PosType p;
            p.row = p1.row + p2.row;
            p.col = p1.col + p2.col;
            return p;
        }
        bool operator== (const PosType p1, const PosType p2) {
            return p1.row == p2.row && p1.col == p2.col;
        }
    };
    
    #endif
    
    

    或者:

    #ifndef POSTYPE_H
    #define POSTYPE_H
    struct PosType
    {
        int row, col;
    
        PosType operator+(const PosType p1, const PosType p2) {
            PosType p;
            p.row = p1.row + p2.row;
            p.col = p1.col + p2.col;
            return p;
        }
        bool operator== (const PosType p1) {
            return p1.row ==row && p1.col == col;
        }
    };
    
    #endif
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 12月22日
  • 已采纳回答 12月14日
  • 创建了问题 12月14日

悬赏问题

  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 定制ai直播实时换脸软件
  • ¥100 栈回溯相关,模块加载后KiExceptionDispatch无法正常回溯了
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding
  • ¥15 Marscode IDE 如何预览新建的 HTML 文件