What's the behavior of an uninitialized variable used as its own initializer?

后端 未结 3 1868
长情又很酷
长情又很酷 2020-11-27 22:35

I noticed just now that the following code can be compiled with clang/gcc/clang++/g++, using c99, c11, c++11 standards.



        
3条回答
  •  我在风中等你
    2020-11-27 23:10

    Because i is uninitialized when use to initialize itself, it has an indeterminate value at that time. An indeterminate value can be either an unspecified value or a trap representation.

    If your implementation supports padding bits in integer types and if the indeterminate value in question happens to be a trap representation, then using it results in undefined behavior.

    If your implementation does not have padding in integers, then the value is simply unspecified and there is no undefined behavior.

    EDIT:

    To elaborate further, the behavior can still be undefined if i never has its address taken at some point. This is detailed in section 6.3.2.1p2 of the C11 standard:

    If the lvalue designates an object of automatic storage duration that could have been declared with the register storage class (never had its address taken), and that object is uninitialized (not declared with an initializer and no assignment to it has been performed prior to use), the behavior is undefined.

    So if you never take the address of i, then you have undefined behavior. Otherwise, the statements above apply.

提交回复
热议问题