gpt4 book ai didi

c++ - 未定义对完整模板特化类成员函数的引用,但不是部分特化

转载 作者:太空狗 更新时间:2023-10-29 21:32:30 25 4
gpt4 key购买 nike

所以当使用具有完整模板类特化的模板显式实例化时,我得到了一个 undefined reference 错误,但问题是,部分模板类特化进行得很好,没有错误。

代码如下,有人知道为什么吗?在这种情况下,完全特化和部分特化有什么区别?

提前致谢。

// t.h
#include <iostream>

using namespace std;

template <typename T1, typename T2>
class A {
public:
void foo();
};

// t2.cpp
#include "t.h"

template<typename T1>
class A<T1, int> {
public:
void foo() {
cout << "T1, int" << endl;
}
};

template<>
class A<int, int> {
public:
void foo() {
cout << "int, int" << endl;
}
};

template class A<float, int>;
template class A<int, int>;

// t.cpp
#include "t.h"

int main() {
A<float, int> a;
a.foo(); // no error
A<int, int> a1;
a1.foo(); // undefined reference error, why?
return 0;
}

编译命令是 g++ t.cpp t2.cpp -o t with gcc 4.8.5。

最佳答案

您必须声明 partialexplicit 每个 使用它们的翻译单元的特化(在任何隐式实例化该特化的使用之前)。在这里,看起来像

template<class T> class A<T,int>;
template<> class A<int,int>;

紧接在主模板之后(以避免任何错误隐式实例化的可能性。

编译器历来对此“松懈”,也就是说,有时它会按照您对所有源文件一起分析的预期进行操作。

您已经在这个特定的编译器中发现了这种意外“支持”的优势。

关于c++ - 未定义对完整模板特化类成员函数的引用,但不是部分特化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54937972/

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