C++如何用变量定义数组

2024-11-23 04:12:05
推荐回答(1个)
回答(1):

用new 比如一维数组 int* n = new int[n]; 最后delete n; n = NULL;