gpt4 book ai didi

c++ - [basic.lookup.unqual]/3 中的第一个示例

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:32:39 24 4
gpt4 key购买 nike

[basic.lookup.unqual]/3 中的第一个示例:

int h;
void g();
namespace N {
struct A {};
template <class T> int f(T);
template <class T> int g(T);
template <class T> int h(T);
}

int x = f<N::A>(N::A()); // OK: lookup of f finds nothing, f treated as template name
int y = g<N::A>(N::A()); // OK: lookup of g finds a function, g treated as template name
int z = h<N::A>(N::A()); // error: h< does not begin a template-id

上面的评论似乎表明编译器应该以不同的方式对待上面的名称 gh 的查找,就像 template-id 不会被考虑用于名称 h。当我用 clang 编译这段代码时,我看不出这种区别或海湾合作委员会。该示例试图传达的确切区别是什么?

最佳答案

您正在查看 C++20 草案,但使用 C++17 编译器进行测试。

Unqualified template name 查找是 P0846R0 引入的新 ADL 功能并被采纳到 C++20 草案中。

所以要尝试一下,请使用带有 -std=c++2a ( link ) 的 GCC 主干:

error: expected primary-expression before '>' token
12 | int z = h<N::A>(N::A()); // error: h< does not begin a template-id

虽然确切的错误信息还不完美,但最终结果是前两次查找成功。

为了比较,请注意 [basic.lookup.unqual]/3 的 C++17 版本不包含您提到的示例。

关于c++ - [basic.lookup.unqual]/3 中的第一个示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54619879/

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