gpt4 book ai didi

c - 为什么单个指针的行为类似于数组,并且不需要解引用运算符 (*) 来访问指向的元素?

转载 作者:行者123 更新时间:2023-12-05 01:29:24 27 4
gpt4 key购买 nike

int *insertZeroPosition(int *pf,int n,int k){
int *ptr=(int *)calloc(n+1,sizeof(int));
int i;
ptr[0]=k;
for (i=1;i<n+1;i++,pf++){
ptr[i]=*pf;
}
return ptr;
}

为什么它是 ptr[i]=*pf 而不是 *ptr[i]=*pf 即使 ptr 是一个指针?

最佳答案

语法p[i]等同于*(p + i)。即使使用数组下标语法,取消引用仍然存在。

C 标准,§ 6.5.2.1.2:

The definition of the subscript operator [] is that E1[E2] is identical to (*((E1)+(E2))).

如果需要,您可以将代码重写为 *(ptr + i) = *pf;没有区别。

关于c - 为什么单个指针的行为类似于数组,并且不需要解引用运算符 (*) 来访问指向的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59200520/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com