a bool variable could hold true or false, while bool? could be null as well.
Why would we need a third value for bool ? If it is not true, what ever it is, it is == false
Can you suggest a scenario where I would fancy a bool? instead.
Thanks
| show 1 more comment |
|
Something can be true, false or undefined for many reasons. How would one answer "Is your third child a girl?" if one only has two children? Both true and false are incorrect. Null would be appropriate as saying that the comparison doesn't apply. |
|||
|
a |
|||||
|
|
Various answers discuss the importance of nullable types in general. There is an additional answer for the nullable boolean, specifically. It's hard to understand in C#, but very easy to understand if you look at null-valued logic in any database. Let's say you're tracking a list or table of You want to retrieve a list of all shipments that were delivered during the last week. So you write this:
Should shipments with a OK, so what about this:
Should shipments with a So now you have a curious situation. You might think that between the two of these queries, you would receive all shipments in the system. Even this one fails to get you all the results:
So how is this possible? In order to accurately represent this logic, you need a condition that is not true or false. And again, C# is kind of a bad example here because it doesn't implement the logic the way you'd really expect it to. But in SQLese, it makes sense, because:
Clearly, But C# is not so consistent. In C#, if the
Which gets you the right answer for our query above, so you might be tempted to say that regular boolean logic is good enough, except that this one messes it all up:
Aha... now it's giving us back The So, why should you care about
This is a bit awkward, but correct. We've written a query that more or less communicates its intent properly, and If you ever need to evaluate a condition where the answer might be "I don't know" - use a That way, the caller can decide how to handle an "I don't know" response instead of you simply choosing a default. Anything else means your class is lying. |
||||
|
|
|
It's good for when something hasn't been answered yet - think of a questionnaire. You have a list of y/n questions and only some have been answered. You wouldn't want to post true or false to the database table because the user hasn't answered the question yet. |
|||
|
|
|
it could be unknown in addition to true or false..in database land a NULL usually means unknown or no value |
|||
|
|
|
Lazy programming!
|
|||
|
|
|
a null value means
a null value means Mu |
|||
|
|
|
being nullable could indicate that the bool has not be set or initialized if that is something your program might need to know |
|||
|
|
|
I used it in a Filter Value. Basically I have a bool field in the database, but I wanted three states: Only return rows where the value is true, only return rows where the value is false, do not filter and return all rows. Without a nullable bool I would have to use either an enum or a second bool to determine "Filter by this field yes/no" which would add bloat. |
|||
|
|
|
Well I could see it being used as a "Not determined yet" kind of thing, i use bools all the time and sometimes just two values isnt enough!! for instance:
in my opinion its just the third value to a bool. |
|||||||||
|
|
You'd want to use that to cover the situation of "what if the user doesn't specify neither true nor false?" It's just a way to cover all possible outcomes. |
|||
|
|
|
Let's say that an order has been placed but not shipped yet. What is the value of The old-fashioned way to handle this was to use a magical value like So the modern approach is to allow Further, databases have long allowed a column to allows |
|||
|
|
|
Here is another use case. Think of a hierarchical data structure that has a boolean property. Setting such property on the parent will apply to all of its children, unless those are set explicitly. Think Read only permissions for files and folders in Windows (which DO have a tri-state checkbox).
|
|||
|
|
|
I think the primary motivation (at least it was presented like this :-)) for adding nullable types in C# 2 were databases. In database, any data type can have the What does the third value mean for booleans, that of course depends on the application. I guess that typically, it will mean that the value/field is not available. |
|||
|
|
Nullable<bool>– Nick Craver♦ Feb 5 '10 at 1:09bool, which is why it only has two. Butbool?- that is,Nullable<T>whereTisbool- is a different thing altogether - it means "either this isnull, or some value from value domain of typebool". – Pavel Minaev Feb 5 '10 at 1:09maybevalue – Rubens Farias Feb 5 '10 at 1:14