当前位置: 代码迷 >> Java相关 >> a000.字符串示意的「true」转换为布尔型的「true」
  详细解决方案

a000.字符串示意的「true」转换为布尔型的「true」

热度:94   发布时间:2016-04-22 19:14:44.0
a000.字符串表示的「true」转换为布尔型的「true」
 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  }

 

  相关解决方案