如果您的意思是 C 风格的数组,那么您可以执行以下操作: int a[7]; std::cout << "Length of array = " << (sizeof(a)/sizeof(*a)) << std::endl; 这不适用于指针(即它 不适用于以下任何一种): int *p = new int[7]; std::cout << "Length of array = " << (sizeof(p)/sizeof(*p)) << std::endl; 或者: void func(int *p) { std::cout << "Length of array = " << (sizeof(p)/sizeof(*p)) << std::endl; } int a[7]; func(a); 在 C++ 中,如果你想要这种行为,那么你应该使用容器类;可能 std::vector 。 原文由 Oliver Charlesworth 发布,翻译遵循 CC BY-SA 4.0 许可协议
干得好: #include <iostream> using namespace std; int main() { int arr[] = {10,20,30,40,50,60}; int arrSize = sizeof(arr)/sizeof(arr[0]); cout << "The size of the array is: " << arrSize; return 0; } 原文由 4ukh 发布,翻译遵循 CC BY-SA 4.0 许可协议
如果您的意思是 C 风格的数组,那么您可以执行以下操作:
这不适用于指针(即它 不适用于以下任何一种):
或者:
在 C++ 中,如果你想要这种行为,那么你应该使用容器类;可能
std::vector
。