gpt4 book ai didi

arrays - 为什么 C 数组元素(貌似)存储在 4 个 block 中?

转载 作者:行者123 更新时间:2023-12-02 18:52:54 24 4
gpt4 key购买 nike

我正在学习 C 语言并了解指针。据我了解,当您声明一个数组时,该数组的地址是该数组中第一个元素的地址。所有其他元素都连续存储在内存中。

当我使用 online C compiler at onlinegdb.com 运行此代码时...

int main()
{
int num[5] = { 0, 1, 2, 3, 4 };

for (i = 0; i < 5; i++) {
printf("num[%d] has the value %d and is stored at address %p\n",
i, num[i], &num[i]);
}

return 0;
}

我观察到以下情况...

num[0] has the value 0 and is stored at address 0x7ffe9973e600
num[1] has the value 1 and is stored at address 0x7ffe9973e604
num[2] has the value 2 and is stored at address 0x7ffe9973e608
num[3] has the value 3 and is stored at address 0x7ffe9973e60c
num[4] has the value 4 and is stored at address 0x7ffe9973e610

据我所知,C 编译器选择了 num[0] 的内存位置。 ,然后每个后续元素都放置在四个地址之外。我知道每个编译器都可能不同并且有不同的行为,但如果这是标准的 - 为什么数组元素似乎存储在四个 block 中?为什么地址模式不是 0x7ffe9973e600 , ...601 , ...602 , ...603 , ...604 ?每个元素是否占用多个地址?

最佳答案

内存中的地址代表1个字节的数据。 num 数组是 int 类型,每个数组占用 4 个字节。因此,为了存储一个元素num[0],我们需要占用4个字节的内存,并且由于每个字节需要1个内存地址,因此它们有4个内存地址的间隙。如果它是一个 char 数组,那么您将看到序列 0x7ffe9973e600、...601、...602、...603、...604 等等。

关于arrays - 为什么 C 数组元素(貌似)存储在 4 个 block 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66528794/

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