码迷,mamicode.com
首页 > 编程语言 > 详细

java Boolean和boolean的区别

时间:2019-03-26 21:12:18      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:string   包装   实例   com   span   判断   get   tostring   输出   

     Boolean b1=new Boolean("false");
        Boolean b2=new Boolean("tRue");
        Boolean b3=new Boolean("ok");

        String str2= b2.toString();
        System.out.println(b1);
        System.out.println(str2);
        System.out.println(b3);
输出:

false
true
false

Boolean:将字符串false(不区分大小写)和tRue(不区分大小写)包装成一个对象,以提供对象的一些操作方法。并且在某些场合只能用包装类。

public final class Boolean implements java.io.Serializable,
                                      Comparable<Boolean>

 

boolean是基本数据类型
Boolean是它的封装类,和其他类一样,有属性有方法,可以new,例如:
Boolean flag = new Boolean("true"); // boolean 则不可以!
Boolean 是boolean 的实例化对象类,和Integer对应int一样
自jdk1.5.0以上版本后,Boolean在"赋值"和判断上和boolean一样,
即是你: boolean b1 = true ; 或者 Boolean b2 = true ; 都可以。
唯一只能使用Boolean的就是从列表或者哈希表获取值时
比如 boolean t = false;
Map map = new HashMap();
map.put("t", t);
那么获取值时只能用
Boolean t1 = (Boolean) map.get(t); //前面只能用Boolean强制转换,不能使用boolean.

原文:https://blog.csdn.net/invLong/article/details/43986613

java Boolean和boolean的区别

标签:string   包装   实例   com   span   判断   get   tostring   输出   

原文地址:https://www.cnblogs.com/JohnTeslaaa/p/10603415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!