小编eve*_*een的帖子

如何在C++中获取动态数组的大小

通过输入大小并将其存储到"n"变量中的动态数组代码,但我想从模板方法获取数组长度而不使用"n".

int* a = NULL;   // Pointer to int, initialize to nothing.
int n;           // Size needed for array
cin >> n;        // Read in the size
a = new int[n];  // Allocate n ints and save ptr in a.
for (int i=0; i<n; i++) {
    a[i] = 0;    // Initialize all elements to zero.
}
. . .  // Use a as a normal array
delete [] a;  // When done, free memory pointed to by a.
a = …
Run Code Online (Sandbox Code Playgroud)

c++ dynamic-arrays

17
推荐指数
1
解决办法
6万
查看次数

标签 统计

c++ ×1

dynamic-arrays ×1