sizeof(n)⼀sizeof(int);检测数组元素个数?

2025-04-05 10:53:56
推荐回答(5个)
回答1:

数组名在当参数传递时,会完全退化为指针,
这样写void num(int a[])和void num(int *a)完全一样
所以,sizeof(a)其实求的是指针的大小,指针大小总是为4个字节的,所以sizeof(a)/sizeof(int)总是为1,可以传递一个参数n,为数组大小。

  1  So unlike an int, this is the type of number that can have numbers after a decimal place.
  所以,不同于int,这个类型的数字,可以有小数位。
  2  So with an integer, an int data type, you can store any number between0 and4 billion roughly.
  只要有一个整数,一个int型的数据,就能储存任意一个,位于0到40亿之间的一个数。
  3  The other two methods are proxies for the get and set methods used to access an int property value.
  另外两个方法是用于访问一个int属性值的get和set方法的代理。
  4  means that only int values can be passed in.
  意味着我们只能传入int值作为参数。
  5  Also suppose that the Collaborator object requires a string and a primitive int as parameters passed to the constructor.
  同时假定Collaborator对象要求使用字符串和原始的int作为传递给构造函数的参数。

回答2:

C++中已明确规定最为参数传递的数组名就是指针,所以它的大小只是该类型的指针大小而不是数组大小,所以,不能用sizeof来求得大小

回答3:

void num(int a[])//a作参数时已退化成整形指针,即 int *
{
int n;
n=sizeof(a)/sizeof(int); //指针为4,整形也为4,所以结果为1
printf("%d\n",n);
}
数组大小的话,可通过参数传进函数体
void num(int a[],int n)//n是数组的大小

回答4:

数组名在当参数传递时,会完全退化为指针,
你这样写
void num(int a[])

void num(int *a)
完全一样

所以,sizeof(a)其实求的是指针的大小,指针大小总是为4个字节的,所以
sizeof(a)/sizeof(int)总是为1

可以传递一个参数n,为数组大小

有问题hi我

回答5:

a被认为是指针
而指针是占四个字节的