Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The question arose in the comments of an answer to the question Is C/C++ bool type always guaranteed to be 0 or 1 when typecast'ed to int?

The code in question allocates a (local) array of bool without initializing their value.

const int n = 100;
bool b[n];

Clearly the values in b are indeterminate.

Some of the commenters opined that reading e.g. b[0] was undefined behavior. Is this stated anywhere in the C++ standard? I am still convinced of the opposite:

  1. There is clearly storage allocated and initialization of the fundamental bool type is complete, since it doesn't have a constructor. It is thus certainly not the same as dereferencing an uninitialized pointer, or calling methods/cast operators on uninitialized non-trivial objects. These specific cases seem to be covered by the standard.

  2. The behavior is indeed undefined in C: What happens to a declared, uninitialized variable in C? Does it have a value? and some respondents seem to confuse the two.

  3. In the latest C++0x draft I can find no definition of indeterminate value especially no definition that would allow accessing such a value to trigger a processor trap. Indeed, Bjarne Stroustrup is not sure what an inderminate value may be: http://zamanbakshifirst.blogspot.com/2007/02/c-indeterminate-value.html

share|improve this question
1  
Oh well, "Undefined behavior" is a very favourite term here in StackOverflow and it is used for everything from implementation defined, through unspecified upto the real undefined. – Let_Me_Be Nov 25 '10 at 16:54
1  
I mean the proverbial "nasal demons" kind of undefined. – Sebastian Nov 25 '10 at 16:57
And btw. 8.5 - 9 talks about this. – Let_Me_Be Nov 25 '10 at 17:00
1  
@Let_Me_Be: that may be true, and sometimes people might accidentally classify some case wrongly even though they understand the difference. But this is UB in the only sense that matters, which is the sense defined in the standard. – Steve Jessop Nov 25 '10 at 17:05

2 Answers

up vote 4 down vote accepted

yes, formally an rvalue conversion of indeterminate value is UB (except for unsigned char, originally i wrote "and variants" but as i recall the formal caters to 1's complement signed char where possibly minus 0 could be used as trap value)

i'm too lazy to do the standard paragraph lookup for you, and also to lazy to care about downvotes for that

however, in practice only a problem on (1) archaic architectures, and perhaps (2) 64-bit systems.

EDIT: oops, i now seem to recall a blog posting and associated Defect Report about formal UB for accessing indeterminate char. so perhaps i'll have to actually check the standard, + search DRs. argh, it will have to be later then, now coffee!

EDIT2: Johannes Schaub was kind enough to provide this link to SO question where that UB for accessing char was discussed. So, that's where I remembered it from! Thanks, Johannes.

cheers & hth.,

share|improve this answer
@downvoter: please state reason for downvote so that others can learn what's wrong about an answer, or why your downvote is silly. – Cheers and hth. - Alf Nov 25 '10 at 17:01
3  
+1. 4.1/1: "An lvalue (3.10) of a non-function, non-array type T can be converted to an rvalue. If T is an incomplete type, a program that necessitates this conversion is ill-formed. If the object to which the lvalue refers is not an object of type T and is not an object of a type derived from T, or if the object is uninitialized, a program that necessitates this conversion has undefined behavior." – Steve Jessop Nov 25 '10 at 17:01
Hey, I won't downvote you for your lazyness. However, I might not upvote for it either. – Default Nov 25 '10 at 17:03
Thanks, I had found the relevant paragraph [conv.lval] in the latest FCD. However, bool& br = b[0] is not a prvalue but a glvalue if I'm not mistaken. The problem is then that everything I do to br (except assignment) requires the conversion to an rvalue, right? – Sebastian Nov 25 '10 at 17:11
And your link points to youtube.com, not a SO question. Fun certainly, but maybe not what you were going for :-) – Sebastian Nov 25 '10 at 17:13
show 3 more comments

On bool, the standard says under 3.9.1 Fundamental types:

Values of type bool are either true or false.

With a footnote stating:

Using a bool value in ways described by this International Standard as “undefined,” such as by examining the value of an uninitialized automatic object, might cause it to behave as if it is neither true nor false.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.