Best way to define true, false, unset state - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:12:51Z http://stackoverflow.com/feeds/question/314800 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state 3 Best way to define true, false, unset state Tom Martin 2008-11-24T17:11:18Z 2008-11-24T18:29:49Z <p>If you have a situation where you need to know where a boolean value wasn't set (for example if that unset value should inherit from a parent value) the Java boolean primitive (and the equivalent in other languages) is clearly not adequate.</p> <p>What's the best practice to achieve this? Define a new simple class that is capable of expressing all three states or use the Java Boolean class and use null to indicate the unset state?</p> http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314809#314809 11 Answer by Johannes Schaub - litb for Best way to define true, false, unset state Johannes Schaub - litb 2008-11-24T17:13:12Z 2008-11-24T17:36:52Z <pre><code>Boolean a = true; Boolean b = false; Boolean c = null; </code></pre> <p>I would use that. It's the most straight-forward.</p> <p>Another way is to use an enumeration. Maybe that's even better and faster, since no boxing is required:</p> <pre><code>public enum ThreeState { TRUE, FALSE, TRALSE }; </code></pre> <p>There is the advantage of the first that users of your class doesn't need to care about your three-state boolean. They can still pass <code>true</code> and <code>false</code>. If you don't like the <code>null</code>, since it's telling rather little about its meaning here, you can still make a <code>public static final Boolean tralse = null;</code> in your class.</p> http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314810#314810 4 Answer by John Rudy for Best way to define true, false, unset state John Rudy 2008-11-24T17:13:21Z 2008-11-24T18:28:11Z <p>Although not Java-specific, my own preference in this scenario is to define a ThreeState class or enumeration and use it -- just as you mentioned, a True, a False and an Undefined (or Default, or Unset, as your domain-specific terminology dictates). It feels better, more natural and more self-documenting than representing unset/undefined with <code>null</code>.</p> http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314814#314814 -2 Answer by Steve B. for Best way to define true, false, unset state Steve B. 2008-11-24T17:15:13Z 2008-11-24T17:15:13Z <p>java.lang.Boolean does this for you. There are static constants Boolean.TRUE, Boolean.False. </p> <p>private Boolean myBoolean;</p> <p>should be all you need.Note that Boolean.TRUE will pass an equivalence test but is distinct from "true" (which gets autoboxed to TRUE). </p> http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314816#314816 6 Answer by Chris Simpson for Best way to define true, false, unset state Chris Simpson 2008-11-24T17:16:17Z 2008-11-24T17:16:17Z <p>The nullable boolean gets my vote</p> http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314818#314818 0 Answer by Claudiu for Best way to define true, false, unset state Claudiu 2008-11-24T17:16:45Z 2008-11-24T17:16:45Z <p>It depends. Here you mention it would be unset if it has to inherit its value from a parent value. Do you have some kind of data hierarchy? Something like this:</p> <pre><code>Parent a { boolean val = true; boolean val2 = false; } Child b { boolean val = false; //here val2 should be unset! } </code></pre> <p>In this case, if it's possible, I'd say simply don't include val2 in the Child, and have your lookup logic be such that if it doesn't find the variable, it searches the parents for the value.</p> http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314822#314822 0 Answer by Hates_ for Best way to define true, false, unset state Hates_ 2008-11-24T17:17:46Z 2008-11-24T17:17:46Z <p>Using nulls to represent the state of something is poor design. It's undescriptive and hard to maintain. I would rather have a State object with a default state if nothing has been explicitly set on it. For example:</p> <pre><code>if(state == null) { doSomething(); } </code></pre> <p>This doesn't tell me anything about what the expected state is. Something more like this makes it more clear.</p> <pre><code>if(state.awaitingSet()) { doSomething(); } </code></pre> <p>Not to mention extensible. What happens when you need a <em>fourth</em> state? </p> http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314980#314980 -1 Answer by WolfmanDragon for Best way to define true, false, unset state WolfmanDragon 2008-11-24T18:29:49Z 2008-11-24T18:29:49Z <p>In the Parent class initiate the boolean to null and in the child class build a method to check to see if the boolean has been set</p> <p>in Parent class </p> <pre><code>private Boolean a = null; public void setA(Boolean a) { this.a = a; } public Boolean getA() { return a; } </code></pre> <p>In the Child Class </p> <pre><code>if (a == true) { dothis; } else if (a == false) { dothat; } else { assert false : "Boolean a has not been set"; } </code></pre> <p>Make sure that assertions are turned on. Assertions are only for the development cycle and test cycle, they are not for runtime exceptions.</p>