兩種動態創建二維數組的方法

#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];
相關文章
相關標籤/搜索