我找不到这段代码有什么问题:
template <class T>
class B{
T _t;
public:
B(T t) : _t(t) {}
void printHello();
};
template <class T>
void B<T>::printHello(){
std::cout << "Hello";
}
void B<char*>::printHello(){
std::cout <<"Good bye!";
}
我不断得到:
'错误:模板参数列表太少'