如何使用指针将结构视为内存位置和访问元素

时间:2015-08-18 15:18:26

标签: c pointers structure ansi

我有一个结构

Console.BackgroundColor

我将此结构作为参数传递给函数,如何通过内存位置获取/访问结构元素(换句话说,我想通过内存地址处理此结构)

typedef struct
{
    unsigned char status;
    unsigned char group_id;
    unsigned char acc_trip_level;
    unsigned char role[50];
    unsigned char standard_panic_header[50];
    unsigned char high_threat_message[50];
    unsigned char high_threat_header[50];
}cfg;

cfg test_val;

给我结果

void foo(cfg *ptr)
{
    printf("%zu\n", sizeof(*ptr)); //Gives size of the strcture
    printf("%p\n", (void*)ptr); //Gives the starting address of strcure
    printf("%p\n", (void*)(ptr+4));  //I want to access the 4th element/ memorylocation
}

但它应该给8048780 + 4 = 8048784吧...我错过了什么

2 个答案:

答案 0 :(得分:2)

这对我有用:

 void foo(cfg * ptr)
 {
     printf("%zu\n", sizeof(*ptr));
     printf("%p\n", ptr);
     printf("%p\n", (void *)((char *) ptr + 4));
 }

然后:

 $ ./a.out 
 203
 0x7fffb6d04ee0
 0x7fffb6d04ee4

当你单独使用(ptr + 4)时,你基本上得到了(ptr + 4 * sizeof(cfg)),因为指针算法与指针对象的大小一致,就像有人已经评论过一样。

此外,格式说明符%p应该用于地址。

答案 1 :(得分:0)

试试这个:

void foo(cfg *ptr)
{
    printf("%zu\n",sizeof(cfg)); //Gives size of the strcture
    printf("%x\n",ptr); //Gives the starting address of strcure
    printf("%x\n",ptr->role);  //I want to access the 4th element/ memorylocation
}

如果您的目标是使用索引偏移来访问结构的内部元素,我建议实现哈希表。