gpt4 book ai didi

c++ - 为指针分配地址

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:08:06 25 4
gpt4 key购买 nike

我想知道是否有其他方法可以为指针分配其指向的值的地址。例如,通常的方法是:

int a = 10;
int *ptr;
ptr = &a;

但在某些地方我看到它声明为:

int *ptr = &a;

这两种方式是否等价?我有点困惑,因为我一直认为 *ptr 是给出 a 的,而不是地址。谁能解释一下?谢谢。

最佳答案

I am slightly confused because I always considered *ptr as giving the value of a, and not the address.

确实有点困惑,因为 * 用于声明指针,也用作解引用运算符。 * 的实际含义取决于上下文 - 是用于声明、初始化还是赋值。

值得了解 1) 声明、2) 初始化和 3) 赋值之间的区别。

int *ptr; // 1) this is declaration without initialisation.

int *ptr = &a; // 2) this is declaration **and** initialisation (initialise ptr to the address of variable a)

int b = 10;
*ptr = b; // 3) this is assignment, assign what pointed by ptr to value of variable b.
  • 在 1) 中,* 表示 ptr 是指向 int 的指针(但它尚未指向任何有效位置)。
  • 2)中的*表示ptr是一个指向int的指针,其初值为变量的地址一个
  • 在3)中,*是解引用运算符,即将ptr指向的内容赋给变量b的值。

关于c++ - 为指针分配地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34654561/

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