C++函数模板
摘要:
#include<iostream> using namespace std; template <class T> void printArray(const T *array, int count) { for (int i=0; i< count; i++) { cout << array[i 阅读全文
posted @ 2020-08-15 14:27 tongqingliu 阅读(113) 评论(0) 推荐(0) 编辑