最新下载
热门教程
- 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。
相关文章
- 《燕云十六声》配置要求介绍 12-25
- 《燕云十六声》搬砖介绍 12-25
- 时空中的绘旅人天宇之间怎么玩 绘旅人天宇之间活动玩法介绍 12-25
- QQ2024年度报告怎么看 2024qq年度报告玩法介绍 12-25
- 归龙潮珠砂什么时候up 归龙潮红缘绮梦卡池介绍 12-25
- 王者荣耀S38赛季有什么更新 12-25