本文主要是介绍C++ 中的 sizeof 方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天看到一个c++特别方便的方法,类似于 #include <cstring> 中的strlen()一样处理长度的方法,那么正常情况下strlen是处理不了整形数组的。
例子:
int a[] = {2,4, 6, 5,7 ,7};
int len = sizeof (a);
就可以测出长度。
详细代码:
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
int a[] = {2, 3, 4, 6, 7, 8, 9};
int num = sizeof(a)/4;
cout<<
这篇关于C++ 中的 sizeof 方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!