您的位置:首页 > 编程语言 > Java开发

(转载)JAVA中八种基本数据类型的默认值

2016-08-12 12:00 561 查看
原文链接:

  http://simon-c.iteye.com/blog/1016031

引用

For type byte, the default value is zero, that is, the value of (byte)0.
For type short, the default value is zero, that is, the value of (short)0.
For type int, the default value is zero, that is, 0.
For type long, the default value is zero, that is, 0L.
For type float, the default value is positive zero, that is, 0.0f.
For type double, the default value is positive zero, that is, 0.0d.
For type char, the default value is the null character, that is, '\u0000'.
For type boolean, the default value is false.


以上摘自《Java Language Specification Second Edition》CHAPTER 4

基本类型默认值
byte0
int0
short0
long0L
float0.0f
double0.0d
char'\u0000'
booleanfalse
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: