I'm redesigning a class constructor in C++ and need it to catch an unspecified bool. I have used default values for all of the other parameters, but from my understanding bool can only be initialized to true or false. Since both of those cases have meaning in the class, how should I handle checking for change from a default value?
|
|
|||||
|
|
|
The reality is that you can't do this. A bool has value, either true or false, and if you haven't initialized it then it is randomly true or false, possibly different at each run of the program or allocation of that class. If you need to have a type with more options, define an enum.
|
||||||||||||||||||||
|
|
|
|
||
|
|
|
|
Use the great boost::optional. And not only for bools but for all other places you used some dirty not-initialized-values in. It is used like this:
And here's a function example returning an optional:
|
||
|
|
|
|
You really can't. Could you provide a second constructor, for example:
|
||
|
|
|
Tristate bool is the path to the dark side. Tristate bool leads to anger. Anger leads to hate. Hate leads to suffering. In other words, prefer not to use a "tristate bool" :) Instead, use one additional boolean for whether the first boolean is "initialized" (or better, "known") or not.
If the veredict is not known yet, you can't tell if the Prisoner is really guilty, but your code can differentiate between the different situations. Of course the Constitution assures that the default value of is_guilty should be false, but, still... :) By the way, the class invariant should include:
|
|||
|
|
|
|
I like the enum version answers, but I usually like adding some null value, and also in this case you could use a default one too. Example:
|
||
|
|
|
|
Instead of a boolean, use an enumeration. For example, to control the level of magic:
Then have your constructor accept a parameter |
||
|
|
|
|
It sounds like you want boost::tribool or maybe boost::optional<bool>. |
||||
|
|
|
In C++ a
I would probably choose option 1. |
||
|
|
|
|
You could have a separate private member that indicates whether the bool value has actually been initialized or not. |
||
|
|
|
|
Hi I guess bool is uninitialized by default and remains so until you assign a value (true/false) to it cheers |
||||||||
|
|
|
I don't quite understand, but I'll try... Default values are applied when you have an aggregate initializer that leaves some values unspecified. In that case, bool's default would be false. In a class, the "default" value would be uninitialized, meaning it could be any value and could change from run to run. If you're interested in whether or not a bool has changed, your best option is to keep track of it with a second bool defaulting to false, or use an enum representing 3 possible states. If you truly want 3 states, you really don't want a bool. |
||
|
|
|
|
If that's what you need, create a value which represents the concept of a value that may not have been initialized.
Now you can represent all 3 states you need.
|
||
|
|
