Java_74_数据类型_占用字节

数据类型

[1Byte=8bit]

基本数据类型

①整数类型:byte[1Byte],short[2Byte],int[4Byte],long[8Byte]

②浮点类型:float[4Byte],double[8Byte]

③字符型:char[2Byte]

④布尔型:boolean[1bit]

引用数据类型[4Byte]

①类:class

②接口:interface

③数组:type[ ] name=new type[X]

发布了136 篇原创文章 · 获赞 11 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/pmcasp/article/details/102892252