摘要: 模板 函数模板 相比于函数的重载,减少了代码的冗余 template <class T> //定义函数模板 void outputArray(const T *array, int count) { for (int i = 0; i < count; i++) cout << array[i] < 阅读全文
posted @ 2020-07-23 00:21 happy_fan 阅读(190) 评论(0) 推荐(0) 编辑