template <int parameter> class MyClass
以上是模板专业化吗?我不这么认为,但我不确定,我不知道模板可以将参数作为函数接收。它们的参数存储在哪里?
模板参数不一定需要是类型名称:它们也可以是数字。例如,采用数组大小std::array
的类型参数。size_t
在您的情况下,类模板采用 type 的参数int
,这完全可以。以下是如何使用此类参数的示例:
template <int param> struct MyClass {
int array[param]; // param is a compile-time constant.
};
int main() {
MyClass<5> m;
m.array[3] = 8; // indexes 0..4 are allowed.
return 0;
}
它们的参数存储在它们的类型信息中。
不,这不是模板专业化。看看这个:
template <int, int> class MyClass; // <-- primary template
template <int> class MyClass<int, 4>; // <-- partial specialization
template <> class MyClass<5, 4>; // <-- specialization