const AnyType Max(const AnyType ary[], const int size);
template <> const char *Max
用char *对模板进行显示具体化上面的写法错误,为什么呢?我的理解是用char *替换 AnyType
但是要像下面这样写才能通过编译,为什么呢?
template
const AnyType Max(const AnyType ary[], const int size);
template <> const char *const Max
如何理解AnyType呢?