在c中使用带浮点数的offsetof

时间:2015-04-14 08:43:55

标签: c offsetof

代码适用于int但是当我想使用float时它会失败,除非我将结构转换为字符指针。这是它的样子:

struct test
{
    float a;
    float b;
};

void stuff(int offset, test* location);

int main()
{
    test *t;
    t = (test*)malloc(sizeof(test));

    char choice = '\0';

    //Find the byte offset of 'a' within the structure
    int offset;
    printf("Edit a or b?");
    scanf("%c", &choice);
    switch (toupper(choice))
    {

    case 'A':
        offset = offsetof(test, a);
        stuff(offset, t);
        break;
    case 'B':
        offset = offsetof(test, b);
        stuff(offset, t);
        break;
    }
    printf("%f %f\n", t->a, t->b);
    return 0;
}

void stuff(int offset, test* location)
{
    float imput;
    printf("What would you like to put in it? ");
    scanf("%f", &imput);
    *(float *)((char *)location + offset) = imput;
    //*(float *)(location + offset) = imput   Will Not Work
}

*(float *)(location + offset)= imput 不能用于浮点数,而是用于转换位置和偏移量作为int指针。

我尝试过在网上寻找,但我对此问题找不到多少。

1 个答案:

答案 0 :(得分:5)

这是因为指针有'单位',即它们指向的对象的大小。

让我们假设您有一个指针p,指向地址1000。

如果你有

int* p = 1000;
p += 10;

p将指向32位计算机上的1040,因为int的大小为4个字节。

但如果你有

char* p = 1000;
p += 10;

p将指向1010

这就是为什么

*(float *)((char *)location + offset) = imput;

有效,但

*(float *)(location + offset) = imput   Will Not Work