我有一个模板功能:
template<typename T>
void foo(const T& value) { bar(value); x = -1; }
我想将它专门用于一组类型:
template<>
void foo<char>(const char& value) { bar(value); x = 0; }
template<>
void foo<unsigned char>(const unsigned char& value) { bar(value); x = 1; }
它工作正常。当我编译这个:
template<>
void foo<char*>(const char*& value) { bar(value); x = 2; }
我收到一个错误:
error C2912: explicit specialization; 'void foo(const char *&)' is not a specialization of a function template
是否可以专门使用char*
指针类型参数而不使用类型定义?