gpt4 book ai didi

c - 你怎么知道变量的确切地址?

转载 作者:太空狗 更新时间:2023-10-29 14:50:58 24 4
gpt4 key购买 nike

所以我在翻阅我的 C 编程教科书时看到了这段代码。

#include <stdio.h>

int j, k;
int *ptr;

int main(void)
{
j = 1;
k = 2;
ptr = &k;
printf("\n");
printf("j has the value %d and is stored at %p\n", j, (void *)&j);
printf("k has the value %d and is stored at %p\n", k, (void *)&k);
printf("ptr has the value %p and is stored at %p\n", (void *)ptr, (void *)&ptr);
printf("The value of the integer pointed to by ptr is %d\n", *ptr);

return 0;
}

我运行了它,输出是:

j has the value 1 and is stored at 0x4030e0

k has the value 2 and is stored at 0x403100

ptr has the value 0x403100 and is stored at 0x4030f0

The value of the integer pointed to by ptr is 2

我的问题是,如果我没有通过编译器运行它,您如何仅通过查看这段代码就知道这些变量的地址?我只是不确定如何获取变量的实际地址。谢谢!

最佳答案

这是我的理解:

C 中内存中事物的绝对地址是未指定的。它没有标准化为语言。正因如此,光看代码是无法知道事物在内存中的位置的。 (但是,如果您使用相同的编译器、代码、编译器选项、运行时和操作系统,则地址可能是一致的。)

当您开发应用程序时,这不是您应该依赖的行为。但是,在某些情况下,您可能会依赖于两个事物的位置之间的差异。例如,您可以确定指向两个数组元素的指针地址之间的差异,以确定它们相隔多少个元素。

顺便说一句,如果您正在考虑使用变量的内存位置来解决特定问题,您可能会发现发布一个单独的问题来询问如何在不依赖这种行为的情况下这样做会很有帮助。

关于c - 你怎么知道变量的确切地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13262893/

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