Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
10  
I died a little inside the moment I saw false == 1 (never mind, question was edited) – BoltClock Mar 16 '11 at 10:22
1  
I think it's completely uncomfortable to use nullable bool in that way, just think of a piece of code responsible for checking it's value and compare it to enum or regular integer – tchrikch Mar 16 '11 at 10:23
What are the three states meant to represent? And what would a bool? have over an enum? – Marcelo Cantos Mar 16 '11 at 10:23
What about using ´Nullable<bool>´ instead? – k3b Mar 16 '11 at 10:28
4  
@BoltClock, edited to extend the life expectancy of programmers the world over :) – pate Mar 16 '11 at 10:30
show 3 more comments

8 Answers

up vote 6 down vote accepted

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.

share|improve this answer
The DBBool implementation pointed out can be made more memory efficient by not newing while returning in the operator overloads for !, &, |. Rest is fine. – hIpPy Aug 22 '12 at 21:01
That's not correct as it would break the logic. I certainly don't expect DBool a = !b; to modify b !! – LeSnip3R Aug 23 '12 at 12:19
No, it doesn't break logic. DBBool is a struct and a copy is passed to methods. But I was wrong when I said not newing is memory efficient - it's the same. See this thread for that. – hIpPy Aug 23 '12 at 14:12
Ok I was still in my C++ mindset, in which case what you described would have caused subtle but terrible bugs. Thanks for pointing out the other thread. – LeSnip3R Aug 23 '12 at 14:46
not really as the methods do not modify the arguments (for sure in C#, probably in C++ too) :-) – hIpPy Aug 23 '12 at 23:12
show 1 more comment

It's a bit of a subjective question but I'd say no because it would affect readability.

share|improve this answer
Exactly. It obscures the actual concept behind the value. – GCATNM Mar 16 '11 at 10:24

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!

share|improve this answer
5  
Not in SQL it isn't. :-P – Marcelo Cantos Mar 16 '11 at 10:24
What implementation of SQL? If it's a bit, it can be 0 or 1. – Matías Fidemraizer Mar 16 '11 at 10:26
1  
@Matías: In SQL, the expression a < b evaluates to either TRUE, FALSE or NULL. – Marcelo Cantos Mar 16 '11 at 10:26
And which is the case of "NULL"? – Matías Fidemraizer Mar 16 '11 at 10:27
1  
@Matías: I'm not sure what you mean. If a is 1 and b is NULL, the expression evaluates to NULL. In any case, since this is a C# question, I was being mostly facetious. – Marcelo Cantos Mar 16 '11 at 10:28
show 13 more comments

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:

  • DO NOT use Booleans unless you are absolutely sure there will never be a need for more than two values.
share|improve this answer

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

share|improve this answer

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

share|improve this answer

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 DialogResult shouldn't bother readability or maintenance much. I opt it if the use case is just as silly setting three flags. Abort-Retry-Ignore trio would do..

share|improve this answer

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.

// actual variable having true/false
private bool isX = false;
// variable holding wither above is set/not-set i.e. null/not-null
private bool isXSet = false;

public bool IsX
{
   get
   {
      if (isXSet)
      {
         return isX;
      }
      else
      {
         isX = GetX(); // this could be time consuming.
         isXSet = true;
         return isX;
      }
   }
}

This become useful in performance tuning when GetX() above is time consuming and IsX is accessed many times.

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.