首页 > 代码库 > Java中的基本数据类型
Java中的基本数据类型
Java中的基本数据类型分四类八种
byte(Byte-1)/short(Short-2)/int(Integer-4)/long(Long-8)
boolean(Boolean-1bit)
char(Character-2)
float(Float-4)/double(Double-8)
括号后是他们的包装类和所占字节大小(Java中的基本数据类型所占字节大小是固定的,和C/C++中不一样)
基本数据类型的默认值:
Data Type | Default Value (for fields) |
---|---|
byte | 0 |
short | 0 |
int | 0 |
long | 0L |
float | 0.0f |
double | 0.0d |
char | ‘\u0000‘ |
String (or any object) | null |
boolean | false |
代码如下:
1 package com.example.li; 2 3 public class TestBaseType { 4 5 public static void main(String[] args) { 6 System.out.println("Byte.SIZE__" + Byte.SIZE / 8);// 1字节 7 System.out.println("Short.SIZE__" + Short.SIZE / 8);// 2字节 8 System.out.println("Integer.SIZE__" + Integer.SIZE / 8);// 4字节 9 System.out.println("Long.SIZE__" + Long.SIZE / 8);// 8字节10 System.out.println("Character.SIZE__" + Character.SIZE / 8);// 2字节11 System.out.println("Float.SIZE__" + Float.SIZE / 8);// 4字节12 System.out.println("Double.SIZE__" + Double.SIZE / 8);// 8字节13 // System.out.println(Boolean.SIZE);14 }15 16 }
运行结果如下:
1 Byte.SIZE__12 Short.SIZE__23 Integer.SIZE__44 Long.SIZE__85 Character.SIZE__26 Float.SIZE__47 Double.SIZE__8
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。