两种动态创建二维数组的方法

#include<iostream> #include<cstdlib> #include<iomanip> #include"windows.h" using namespace std; template <typename T> void Creat_two_array(T **&x, const int &row,const int &col) { x = new T *[row];
相关文章
相关标签/搜索