1 public class Test { 2 public static void main(String []arg){ 3 // 0.字符串表示的「true」 4 String s = "true"; 5 6 // 1.方式一 7 boolean b = Boolean.valueOf("true").booleanValue(); 8 System.out.println(b); 9 10 // 2.方式二11 boolean b1 = Boolean.valueOf(s).booleanValue();12 System.out.println(b1);13 14 // 3.方式三15 boolean b2 = Boolean.parseBoolean(s);16 System.out.println(b2);17 18 // 4.方式四19 Boolean bb = new Boolean(s);20 boolean b3 = bb.booleanValue();21 System.out.println(b3);22 }