接收數組的函數模板對參數類型推斷

根據模板參數的不一樣,輸入相同數組,類型參數的推斷結果不一樣數組 template void test1(const T1 &arr) { T1 t1; cout << typeid(arr).name() << endl; cout << typeid(t1).name() << endl; } template void test2(const T2(&arr)[size]) { T
相關文章
相關標籤/搜索