Is there any merit to using a nullable bool to store a tri-state value? For example, null == 1st state, false == 2nd state, true == 3rd state?
The overhead is probably higher than using a byte enum, but I'm curious.
|
No, instead consider a class like this: http://msdn.microsoft.com/en-us/library/aa664483(v=vs.71).aspx The whole thing fits on a sbyte so performance wise it's not bad at all; there may be an overhead but it will be negligible and I prefer putting priority on readability and reliability. |
|||||||||||
|
|
It's a bit of a subjective question but I'd say no because it would affect readability. |
|||
|
|
|
I believe it'd an error doing so. A boolean is a "two-state" type. This is its definition. In C#, C++, Java or whatever. If you want to simulate three states, just implement an enumeration instead of reinventing a square wheel! |
|||||||||||||||||
|
|
You should get a copy of Framework Design Guidelines. There on page 177 is a chapter Choosing Between Enum and Boolean Parameters. One of the points there is:
|
|||
|
|
|
I would stick to null for unknown or not yet determined. Also you lose the possibility to do math on the values. All in all not a good idea I think |
|||
|
|
|
No I would recommend to go for Enum as you have already got 3 states in hand now and with scope creep it might increase further. So Enum would be a safe bet and more precise/readable for describing the three states and most important the third state which is neither true nor false. At the end its more like coding for the eyes who will look latter on to this code and make it meaningful and readable for them |
|||
|
|
|
If I won't get any down votes, let me reveal, I sometimes use nullable enum :P. Not by default for a property or so, but sometimes casting non-nullable to nullable to check an extra empty/default situation. And not exactly to add another value to a particular enum, but sometimes I'm too lazy to go back and add another value when all I need at times is just an uknown or default value for enum.. Coming back to the question, I always wanted a tristate bool. Fed up of having to create enums for something i encounter many times. Wondering if any language offered a tristate thing by default. But the fact is an enum is the appropriate choice here. Not only it's readable, but wouldn't hinder with the prospect of processing your variable later on. Whenever you need to simulate a silly tri-valued variable and if you are too lazy to create one, just use some system enums; somethin like a |
|||
|
|
|
A simpler workaround is to have two boolean variables. One will keep null/not-null and the other will keep true/false An application of this: When you are caching a calculation in a boolean property, you need to know if it has been already set or not. e.g.
This become useful in performance tuning when GetX() above is time consuming and IsX is accessed many times. |
||||
|
|
false == 1(never mind, question was edited) – BoltClock♦ Mar 16 '11 at 10:22bool?have over anenum? – Marcelo Cantos Mar 16 '11 at 10:23