Is Java#39;s default value for Boolean #39;true#39;?(Java 的布尔默认值是“真吗?)
问题描述
为什么private Boolean shouldDropTables;
默认给变量赋值true
而不是NULL
,就像写private Integer anInteger的时候;
?
Why does private Boolean shouldDropTables;
assign true
by default to the variable instead of NULL
, like when writing private Integer anInteger;
?
我之所以问,是因为我遇到了一些代码,其中对 shouldDropTables
布尔变量进行评估是 NULL
或不确定是否执行方法.
I am asking because I came across some code where there was an evaluation on a shouldDropTables
Boolean variable being NULL
or not determining whether to execute a method.
推荐答案
Boolean(带有大写'B')是一个布尔对象,如果没有赋值,默认为null.boolean(带有小写b")是一个布尔原语,如果没有赋值,则默认为 false.
Boolean (with a uppercase 'B') is a Boolean object, which if not assigned a value, will default to null. boolean (with a lowercase 'b') is a boolean primitive, which if not assigned a value, will default to false.
Boolean objectBoolean;
boolean primitiveBoolean;
System.out.println(objectBoolean); // will print 'null'
System.out.println(primitiveBoolean); // will print 'false'
这篇关于Java 的布尔默认值是“真"吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 的布尔默认值是“真"吗?


- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01