最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
详谈java中boolean和Boolean的区别
时间:2022-06-29 01:31:59 编辑:袖梨 来源:一聚教程网
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.
通过上面的分析,我们可以得出:
在java中大部分情况我们使用int,boolean基础类型就可以了,只有要封装集合的时候,使用Integer和Boolean。
相关文章
- 《绝区零》伊芙琳培养材料汇总 01-24
- 《无限暖暖》1.2春节兑换码一览 01-24
- 《网上国网》查询阶梯档位方法 01-24
- 《蛋仔派对》神游贺岁盲盒获取方法 01-24
- 《炉石传说》星际联动盗贼卡组玩法介绍 01-24
- 皮革珊瑚属于珊瑚中的 01-24