gpt4 book ai didi

c++ - 对数组和单个数据点使用指针之间的区别?

转载 作者:太空狗 更新时间:2023-10-29 20:38:37 26 4
gpt4 key购买 nike

#include <iostream>
using namespace std;
const int MAX = 3;

int main ()
{
int var[MAX] = {10, 100, 200};
int *ptr;

// let us have array address in pointer.
ptr = var;
for (int i = 0; i < MAX; i++)
{
cout << "Address of var[" << i << "] = ";
cout << ptr << endl;

cout << "Value of var[" << i << "] = ";
cout << *ptr << endl;

// point to the next location
ptr++;
}
return 0;
}

我不明白为什么这段代码应该工作,因为正确的语法是

ptr=&var[0];

代替

ptr=var;

如果var会像

int var=49;

然后我的推理版本成立,之前的程序失败了。他们对数组指针和单个数据点有什么不同的概念吗?

最佳答案

I don't understand why this code should work as the correct syntax is

ptr=&var[0];

instead of

ptr=var;

这两种赋值指针的方式是等价的。在将数组变量分配给指针的表达式中,C++ 将数组名称解释为指向数组初始元素的指针,即 &var[0]

If var would have been something like

int var=49;

then the my version of reasoning holds and earlier program fails.

这是因为 C++ 提供了从数组到指针的隐式转换,而不是从标量变量的指针。

关于c++ - 对数组和单个数据点使用指针之间的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30874863/

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