作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我们需要一个函数模板,它应该根据类型返回一个整数:
template<typename T>
int get_type();
template<>
int get_type<int>()
{
return TYPE_INT;
}
// And so on for other types...
template<>
int get_type<char[]>()
{
return TYPE_STRING;
}
char[]
例如,与
char[5]
不同。 .
template<typename T>
int get_type(const T&);
最佳答案
您不能部分专门化模板函数(但您可以用于模板类)
另一种方法是使用重载进行标签调度,而不是专门化:
template <typename> struct Tag{};
constexpr int get_type(Tag<int>) { return TYPE_INT; }
template <std::size_t N>
constexpr int get_type(Tag<char[N]>) { return TYPE_STRING; }
template <typename T>
constexpr int get_type() { return get_type(Tag<T>{}); }
关于c++ - 有没有办法通过数组类型专门化函数模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61246142/
我有一个带有模板函数的基类,该函数具有通用模板类型和专用版本。 #ifndef BASE_CLASS #define BASE_CLASS #include using namespace std;
我有这个 3D vector 模板 template class Vec3TYPE{ public: union{ struct{ TYPE x,y,z; }; struct{ TY
我是一名优秀的程序员,十分优秀!