gpt4 book ai didi

c++ - 'operator==' 的命名空间限定重载

转载 作者:行者123 更新时间:2023-11-30 01:13:41 25 4
gpt4 key购买 nike

我很好奇为什么下面的代码不能编译:

#include <iostream>
#include <functional>

namespace Bar {
struct Foo {
int x;
};
} // Namespace

static bool operator==(const Bar::Foo& a, const Bar::Foo& b) {
return a.x == b.x;
}

int main() {
Bar::Foo a = { 0 };
Bar::Foo b = { 1 };

// The following line is OK
std::cout << (a == b) << std::endl;

// The following line is not OK
std::cout << std::equal_to<Bar::Foo>()(a, b) << std::endl;
}

这种情况下的编译器 barfs:

[test]$ g++ --std=c++11 -o test test.cc
In file included from /usr/include/c++/4.8/string:48:0,
from /usr/include/c++/4.8/bits/locale_classes.h:40,
from /usr/include/c++/4.8/bits/ios_base.h:41,
from /usr/include/c++/4.8/ios:42,
from /usr/include/c++/4.8/ostream:38,
from /usr/include/c++/4.8/iostream:39,
from test.cc:1:
/usr/include/c++/4.8/bits/stl_function.h: In instantiation of ‘bool std::equal_to<_Tp>::operator()(const _Tp&, const _Tp&) const [with _Tp = Bar::Foo]’:
test.cc:18:46: required from here
/usr/include/c++/4.8/bits/stl_function.h:208:20: error: no match for ‘operator==’ (operand types are ‘const Bar::Foo’ and ‘const Bar::Foo’)
{ return __x == __y; }
^
/usr/include/c++/4.8/bits/stl_function.h:208:20: note: candidates are:
...

即使我尝试另一种变体,违规行也不会编译:

namespace Bar {
struct Foo {
int x;
bool operator==(const Foo& o) {
return x == o.x;
}
};
} // Namespace

但是,似乎以下确实编译:

namespace Bar {
struct Foo {
int x;
};

static bool operator==(const Foo& a, const Foo& b) {
return a.x == b.x;
}
} // Namespace

这到底是怎么回事?

最佳答案

你的第一个operator==在包含 <functional> 之后声明, 所以对 operator== 的查找不合格在 std::equal_to<Bar::Foo>::operator() 的模板定义上下文中不会找到它。而且它不在 Bar 中,Bar::Foo 的唯一关联命名空间, 所以它也没有被 ADL 找到。

第二个,成员,版本 barfs 因为 equal_tooperator()通过 const 引用获取两个参数,但成员函数不是 const .

第三个版本有效,因为 operator==Bar 在同一个命名空间中所以它是由 ADL 找到的。

关于c++ - 'operator==' 的命名空间限定重载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31736363/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com