定义C++一个函数模板: template<class Type> void test(Type a) {} 上面这个没问题,下面这个就有问题: template<class Type> void test() {} 函数必须调用Type这个东西么?