我有代碼,我想的typedef一個模板類以方便您閱讀:一個的typedef模板參數
template<int A, int B>
using templateClass = templateClass<A,B>;
void aFunction(templateClass& tc);
int main(){
templateClass<10, 34> tc;
aFunction(tc);
}
void aFunction(templateClass& tc){
...
}
,但我得到關於不模板標識符許多錯誤被發現。這應該怎麼做?我是想以此爲榜樣:
How to typedef a template class?