头文件中运算符重载的多重定义
在提供的代码示例中,编译器遇到运算符的多重定义错误
具体来说,头文件中的 std::ostream& operator
与隐式内联的 real() 成员函数不同,该函数不易受到多个定义错误的影响,运算符
inline std::ostream& operator<<(std::ostream& o, const Complex& Cplx) { return o << Cplx.m_Real << " i" << Cplx.m_Imaginary; }
或者,运算符的定义
以上是为什么头文件中的运算符重载会导致多个定义错误?的详细内容。更多信息请关注PHP中文网其他相关文章!