vote up 2 vote down star

While I know that by definition a boolean consists of only two states, true or false. I was wondering what value does a boolean have before it is initialized with one of these states.

flag

18  
The third boolean state is usually FileNotFound . – Brian Jun 4 at 18:07
2  
I've always wanted to know what happens to my fridge light when I close the door. If anyone can help me with that I'd be grateful :) – Paul Dixon Jun 4 at 18:10
3  
@Brian, doesn't that depend on whether you implement the Paula Bean? – Paul Tomblin Jun 4 at 18:16
4  
@Paul: When you are not observing, it does not exist. The quantum function collapses only when you open the door :D – talonx Jun 4 at 18:27

9 Answers

vote up 21 vote down check

It defaults to false.

Edit: By popular demand:

unless you're using the wrapped Boolean, which defaults to null. – sudhir.j

link|flag
thanks, that was simple enough. – Soldier.moth Jun 4 at 18:05
2  
In general, Java variables default to what C programmers might call "falsey" values—e.g. 0, null, false, etc. – htw Jun 4 at 18:10
6  
unless you're using the wrapped Boolean, which defaults to null. – Sudhir Jonathan Jun 4 at 18:27
@sudhir.j absolutely right. I hope that the answer gets edited to include that. – Ian McLaird Jun 4 at 18:32
I did happen to know that fact sudhir.j, that is why I tagged the question as primitive, but I also hope the answer gets edited to include it for the benefit of others. – Soldier.moth Jun 4 at 21:41
show 1 more comment
vote up 1 vote down

FYI, boolean defaults to false, primitive numbers default to 0, 0L, 0f or 0d as appropriate, char defaults to '\0', Object references (such as Boolean) default to null.

This also applies to the contents of arrays. (A common gotcha is that an array of Objects is initially full of null values)

link|flag
vote up 1 vote down
public class NewMain {

    boolean foo;
    Boolean bar;

    public static void main(String[] args) {
        NewMain obj = new NewMain();

        obj.whatBoolean();
    }

    public void whatBoolean() {
        System.out.println(foo);
        System.out.println(bar);
    }
}

outputs

false
null

I know this was more philosophical of a question, but thanks to autoboxing you can use Java as a almost truly OO language (I hate having primitive types... now only if it would work in reverse too). It does, however, change the behavior when you use an object (for the better IMO).

link|flag
vote up 1 vote down

FileNotFound!

link|flag
I don't get it, can someone please explain. – Thies Jun 4 at 19:59
2  
@Thies, here is the reference. thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx/… – Yishai Jun 4 at 23:09
vote up 0 vote down

If you had something like

boolean isTrue;

System.out.println(isTrue);

You should get a compile time error because the boolean wasn't initialized. By default when you try to initialize this it will be set to false;

link|flag
1  
Yes, but if the boolean is an instance variable, it defaults to false, no warning. – Software Monkey Jun 4 at 18:10
vote up 0 vote down

It is false

link|flag
vote up 2 vote down

There is no third state. As @Yishai said, if you don't assign a value, boolean fields default to false. Local variables must be assigned before use:

Accessing an uninitialized local variable will result in a compile-time error

See the doc.

link|flag
vote up 0 vote down

In JAVA boolean types default to False.

link|flag
vote up 11 vote down

If it is a local variable, it is a compiler error to reference it before it was initialized. If it is a field, it is initialized to false.

link|flag
same goes for array contents – Michael Borgwardt Jun 4 at 22:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.