作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
实现 template friend function
的问题在 template class
内过去已经讨论过,似乎是an unresolved issue in the standard具有不同编译器的不同行为。
检查 gcc 和 clang 的最新可用版本,似乎已做出决定,要求实现 template friend function
成为 外 的template class
.
以下代码在使用 -std=c++2a 编译时被最新版本的 gcc 和 clang(gcc x86-64 9.2.0 和 clang x86-64 9.0.0)拒绝。过去的 clang 版本可以接受(例如 clang x86-64 7.0.0)。
template<long Num>
struct A {
template<long Num1, long Num2>
friend int foo(A<Num1> a1, A<Num2> a2) {
return 1;
}
// the compilation error occurs only with a template friend function
// and only if *implemented inside* a template class
};
int main() {
A<1> a1;
A<2> a2; // commenting this line removes the error
}
<source>:4:16: error: redefinition of 'foo'
friend int foo(A<Num1> a1, A<Num2> a2) {
^
<source>:11:10: note: in instantiation of template class 'A<2>' requested here
A<2> a2;
^
最佳答案
我从 CWG 2174 的决议中找出了相关的措辞。它在 C++17 的 [temp.inst]/2 中:
However, for the purpose of determining whether an instantiated redeclaration is valid according to [basic.def.odr] and [class.mem], a declaration that corresponds to a definition in the template is considered to be a definition.
foo
的定义的位置。需要存在(在你的代码中,没有这样的点,所以
foo
没有被实例化),但即使定义没有被实例化,编译器仍然需要在同一个翻译单元中诊断多个定义,就好像每次实例化声明时都会实例化定义。
关于c++ - 模板类中的模板友元函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59415978/
我是一名优秀的程序员,十分优秀!