0
我找不到什麼是錯,此代碼:模板特 - >「太少了模板參數列表」
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!";
}
我不斷收到:
'error: too few template-parameter-lists'
感謝您的快速重播......但仍然有一個錯誤... – Chiko
@ user1369740:什麼呃ROR? http://ideone.com/qbQXv –
'錯誤:太少的模板參數列表' – Chiko