参见英文答案 >
operator overloading,member and non-member function,which one has priority?2个
以下代码有2个operator的定义 – 一个在Foo类上,另一个是独立函数.
以下代码有2个operator的定义 – 一个在Foo类上,另一个是独立函数.
我觉得编译器应该抱怨这个,但事实并非如此.当我在main函数中使用operator时,它会选择类中定义的那个.当我删除类中的那个时,它开始使用独立功能.
删除类方法以静默方式更改C程序的行为这一事实非常令人担忧.这有什么理由吗?
#include <iostream> class Foo { public: int operator+(const Foo& b) { return 5; } }; int operator+(const Foo& a,const Foo& b) { return 6; } int main() { Foo a,b; int c{ a + b }; std::wcout << c << std::endl; return 0; }