Mega Code Archive

 
Categories / Java / Data Type
 

Autobox unbox a Boolean and Character

public class AutoBox5 {    public static void main(String args[]) {           Boolean b = true;        // Below, b is auto-unboxed when used in  a conditional expression, such as an if.      if(b)          System.out.println("b is true");        // Autobox/unbox a char.      Character ch = 'x'; // box a char      char ch2 = ch; // unbox a char        System.out.println("ch2 is " + ch2);    }  }