简体   繁体   中英

Printing an uninitialized bool using cout (C++)

I have a class with a bool data member that is not initialized by the constructor. If I do

cout << x.myBoolDataMember;

where x is an object of this class in which the bool has not been initialized, I sometimes get a random number rather than 0 or 1. (I'm using gcc .) Is this behavior compliant with the Standard ?

Is this behavior compliant with the standard?

Yes! Using garbage values(uninitialized) in your code invokes Undefined Behavior

Yes. An uninitialized variable can have any value.

As soon as "<<" operator does not check the bool, this behavior is correct.
The problem here is hidden in the bool itself: program uses more than one bit to store the bool. This is dependent on implementation. Sometimes only one bit can be used to store the bool.
Sometimes more, and it is such a case.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM