c++无类型参数模板(non-type template parameter)

a non-type template-parameter shall have one of the following types(无类型模板参数应该是下面所列举的类型):

1. integral or enumeration type(整型 或者 枚举)
2. pointer to object or pointer to function(对象的指针或函数指针,其实还包括基本类型的指针)
3. reference to object (对象的引用或者函数的引用)
4. Attention :The C++ standard does not allow floating point non-type template parameters

你可能感兴趣的:(C/C++)