gpt4 book ai didi

c - 访问以字节形式存储在内存地址中的值

转载 作者:太空宇宙 更新时间:2023-11-04 03:08:54 24 4
gpt4 key购买 nike

假设我分配了一些内存并有一个指向它的指针。

 Int *k = malloc(100);

将文件中的数据存储到此内存地址后,是否可以检索第 n 个字节的值?比方说我想知道第一个字节处的 int 值。

最佳答案

您可以像使用数组一样使用指针,索引访问“只是”用于取消引用具有偏移量的地址的语法糖。 k[n]*(k + n) 相同。

要检查 k 指向的任何内存的第一个字节是否为 0xFF,请这样写:

if (*((char *)k + 0) == 0xFF) {
/* ... */
}

或者这样写:

if (((char *)k)[0] == 0xFF) {
/* ... */
}

或者这样写:

char* p = (char*)k;
if (p[0] == 0xFF) {
/* ... */
}

请注意指针指向的元素类型很重要。试试这个例子,并从它的输出中学习:

#include <stdio.h>
#include <stdlib.h>

int main(void) {
int* pi = malloc(100 * sizeof *pi);
if (!pi) {
puts("Memory allocation error!");
return 1;
}

pi[3] = 23;

char* pc = (char*)pi;
printf("%d\n", pc[3 * sizeof (int)]);

printf("pi: %p %p\n", pi, pi + 3);
printf("pc: %p %p\n", pi, pc + 3);
return 0;
}

关于c - 访问以字节形式存储在内存地址中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58595647/

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