如何找到数组的长度?

新手上路,请多包涵

有没有办法找到一个数组有多少个值?检测我是否已经到达数组的末尾也可以。

原文由 Maxpm 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 523
2 个回答

如果您的意思是 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 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题