Boolean Wrapper class in Java

Java Programming Language / Decision Making and Looping in java

1441

Program:

public class WrapperClassBoolean{
public static void main(String args[]){

    Boolean a=new Boolean(false);
    Boolean b=true;

    System.out.println(a);
    System.out.println(b);
 }

}

/*
Wrapper class in java provides the mechanism to convert primitive
into object and object into primitive.

Since J2SE 5.0, autoboxing and unboxing feature converts primitive
into object and object into primitive automatically. The automatic
conversion of primitive into object is known as autoboxing
and vice-versa unboxing.

*/

  

Output:

false
true
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.