作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这样的工作代码。
#include <iostream>
struct A{
template<typename T>
void foo(T val);
};
template<typename T> void A::foo(T val)
{
std::cout << val << std::endl;
}
// link template "against" int
template void A::foo(int val);
// #include header here
int main(){
A a;
a.foo(12);
}
模板位于单独的 CPP 文件中,但由于显式实例化,链接有效:
template void A::foo(int val);
然后我做了一些重构,代码看起来像这样:
#include <iostream>
template<typename G>
struct A{
template<typename T>
void foo(T val);
};
template<typename G>
template<typename T> void A<G>::foo(T val)
{
std::cout << val << std::endl;
}
// link template "against" int - not working
//template<typename G>
//template void A<G>::foo(int val);
int main(){
A<float> a;
a.foo(12);
}
如何“链接”T=int,但保持 G“未知”?
最佳答案
这称为显式实例化。
你不能这样做,因为G
是未知的,它不是单一类型。它是一组类型。
关于C++ 模板显式实例化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33276702/
我是一名优秀的程序员,十分优秀!