java中有8種基本資料類型:byte、int、short、long、boolean、char、float、double
#對應的類別為:Byte、Int 、Short、Long、Boolean、Charecter、Float、Double
其中:boolean是邏輯型,char是文字型,byte、short、int、long是整數型,float、double是浮點型
byte:1位元組-128~127
short:2位元組-2^15~2^15-1
int :4位元組-2^31~ 2^31-1
long:8位元組-2^63~2^63-1
#boolean:1位元組true false(java中不能以0或非0代替)
float: 4位元組-3.403E38~3.403E38
double:8位元組-1.798E308~- 4.9E324
char:2位元組 '\u00000' ~' '\uffff '(16進位的,換算過來即0~65535)
#(1位元組等於8位元)
java學習影片推薦:java入門學習
實例:
package com.Howard.test01; /** * java基本数据类型的字节、取值范围 * 由于java.lang.Boolean没用提供size方法, * 所以这里只具体列出了8种基本数据类型中的7种 * @author Howard * 2017年2月24日 */ public class BasicDataTypeTest { public static void main(String[] args) { System.out.println(Integer.TYPE+":"+Integer.SIZE +" "+Integer.MIN_VALUE+"~"+Integer.MAX_VALUE); System.out.println(Short.TYPE+":"+Short.SIZE +" "+Short.MIN_VALUE+"~"+Short.MAX_VALUE); System.out.println(Byte.TYPE+":"+Byte.SIZE +" "+Byte.MIN_VALUE+"~"+Byte.MAX_VALUE); System.out.println(Long.TYPE+":"+Long.SIZE +" "+Long.MIN_VALUE+"~"+Long.MAX_VALUE); System.out.println(Character.TYPE+":"+Character.SIZE +" "+(int)Character.MIN_VALUE+"~"+(int)Character.MAX_VALUE); System.out.println(Float.TYPE+":"+Float.SIZE +" "+Float.MIN_VALUE+"~"+Float.MAX_VALUE); System.out.println(Double.TYPE+":"+Double.SIZE +" "+Double.MIN_VALUE+"~"+Double.MAX_VALUE); } }
運行結果:
#更多java相關文章推薦:java開發入門
以上是java中的資料型別各佔多少位元組(位元)的詳細內容。更多資訊請關注PHP中文網其他相關文章!