首页 > 后端开发 > C++ > 正文

为什么在多个源文件中包含带有函数定义的头文件会导致'多重定义”错误?

Mary-Kate Olsen
发布: 2024-11-16 02:07:03
原创
473 人浏览过

Why does including a header file with a function definition in multiple source files lead to a

头文件中的多重定义错误

问题定义

考虑以下代码示例:

// complex.h
#include <iostream>

class Complex {
public:
   Complex(float Real, float Imaginary);

   float real() const { return m_Real; };

private:
   friend std::ostream& operator<<(std::ostream& o, const Complex& Cplx);

   float m_Real;
   float m_Imaginary;
};

std::ostream& operator<<(std::ostream& o, const Complex& Cplx) {
   return o << Cplx.m_Real << " i" << Cplx.m_Imaginary;
}

// complex.cpp
#include "complex.h"

Complex::Complex(float Real, float Imaginary) {
   m_Real = Real;
   m_Imaginary = Imaginary;
}

// main.cpp
#include "complex.h"
#include <iostream>

int main()
{
   Complex Foo(3.4, 4.5);
   std::cout << Foo << "\n";
   return 0;
}
登录后复制

编译此代码时代码中,编译器报错:

multiple definition of operator<<(std::ostream&, Complex const&)
登录后复制

错误分析

这个错误的原因是运算符的定义

编译器不会抱怨公共成员函数 real(),因为它是隐式内联的。这意味着编译器会在每个使用 real() 的翻译单元中生成 real() 的代码。

解决方案

此问题有两个主要解决方案:

  1. 制作运算符

    通过标记运算符

    inline std::ostream& operator<<(std::ostream& o, const Complex& Cplx) {
       return o << Cplx.m_Real << " i" << Cplx.m_Imaginary;
    }
    登录后复制
  2. 移动运算符

    或者,您可以定义运算符

其他解决方案

除了使用inline关键字或将定义移动到源文件,还有另一种可能的解决方案:

  1. 在函数定义中使用标头保护:

    您可以在函数定义周围添加标头保护以防止它被定义多次。

    #ifndef OPERATOR_LT_LT_DEFINED
    #define OPERATOR_LT_LT_DEFINED
    
    std::ostream& operator<<(std::ostream& o, const Complex& Cplx) {
       return o << Cplx.m_Real << " i" << Cplx.m_Imaginary;
    }
    
    #endif // OPERATOR_LT_LT_DEFINED
    登录后复制

以上是为什么在多个源文件中包含带有函数定义的头文件会导致'多重定义”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板