Can I write to a const member of a non-const struct?

為{幸葍}努か 提交于 2019-12-06 12:43:18

问题


Is this code legal?:

#include <stdio.h>

typedef struct a_d{
    int const x;
} a_d;

int a_d__ctor(a_d *X)
{
    *(int*)&X->x = 42; //<-- legal or not?
    return 0;
}

int main()
{
    a_d a;
    a_d__ctor(&a);
    printf("a.x=%d\n", a.x);

}

回答1:


Modyfing an object declared with const qualifier invokes undefined behavior.

According to the Standard (emphasis mine):

C11 6.7.3/6 Type qualifiers

If an attempt is made to modify an object defined with a const-qualified type through use of an lvalue with non-const-qualified type, the behavior is undefined.



来源:https://stackoverflow.com/questions/42056823/can-i-write-to-a-const-member-of-a-non-const-struct

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!