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

时间:2014-02-25 08:41:30

标签: c++ dynamic-arrays

通过输入大小并将其存储到“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 = NULL;     // Clear a to prevent using invalid memory reference.

此代码类似,但使用动态数组:

#include <cstddef>
#include <iostream>
template< typename T, std::size_t N > inline
std::size_t size( T(&)[N] ) { return N ; }
int main()
{
     int a[] = { 0, 1, 2, 3, 4, 5, 6 };
     const void* b[] = { a, a+1, a+2, a+3 };
     std::cout << size(a) << '\t' << size(b) << '\n' ;
}

1 个答案:

答案 0 :(得分:32)

你做不到。分配有new[]的数组的大小不以任何可以访问的方式存储。请注意,new []的返回类型不是数组 - 它是一个指针(指向数组的第一个元素)。因此,如果您需要知道动态数组的长度,则必须单独存储它。

当然,正确的做法是避免使用new[]并使用std::vector代替std::vector,它会为您存储长度并且在启动时是异常安全的。

以下是使用new[]代替size_t n; // Size needed for array - size_t is the proper type for that cin >> n; // Read in the size std::vector<int> a(n, 0); // Create vector of n elements initialised to 0 . . . // Use a as a normal array // Its size can be obtained by a.size() // If you need access to the underlying array (for C APIs, for example), use a.data() // Note: no need to deallocate anything manually here 代码的代码:

{{1}}