java的基础类型和字节大小_java的基础类型和字节大小

学习c语言的时候,这些个东西起码还是很明确的,因为上课的时候,老师经常问,现在时间久了,见的语言多了,也就有点乱了,也没怎么在意过。

(武藏)     既然你诚心诚意的发问了,

(小次郎) 我们就大发慈悲的告诉你!

(武藏)     为了防止世界被破坏,

(小次郎) 为了守护世界的和平;

(武藏)     贯彻爱与真实的邪恶,

(小次郎) 可爱又迷人的反派角色~~

(武藏)     武藏!

(小次郎) 小次郎!

(合)         我们是穿梭在银河的火箭队!白洞,白色的明天在等着我们!!

(喵喵)     就是这样~喵~~~~

(阿伯怪) So~nansi~~~

先了解2个单词先:

1、bit 位:位是计算机中存储数据的最小单位,指二进制数中的一个位数,其值为“0”或“1”。

2、byte 字节:字节是计算机存储容量的基本单位,一个字节由8位二进制数组成。在计算机内部,一个字节可以表示一个数据,也可以表示一个英文字母,两个字节可以表示一个汉字。

1B=8bit

Java基本数据类型

int

32bit

short

16bit

long

64bit

byte

8bit

char

16bit

float

32bit

double

64bit

boolean

1bit

(boolean 的备注+翻译)

This data type represents one bit of information, but its "size" isn't something that's precisely defined.(ref)

这种数据类型代表一个比特的信息,但它的“大小”没有明确的定义。(参考)

测试代码如下:

class ClassForNameAndClassLoaderTest {

public static void main(String[] args) {

System.out.println("Integer: " + Integer.SIZE/8); // 4

System.out.println("Short: " + Short.SIZE/8); // 2

System.out.println("Long: " + Long.SIZE/8); // 8

System.out.println("Byte: " + Byte.SIZE/8); // 1

System.out.println("Character: " + Character.SIZE/8); // 2

System.out.println("Float: " + Float.SIZE/8); // 4

System.out.println("Double: " + Double.SIZE/8); // 8

System.out.println("Boolean: " + Boolean.toString(false));

}

}

以 Integer类为例如下:

/**

* The number of bits used to represent an {@code int} value in two's

* complement binary form.

*

* @since 1.5

*/

@Native public static final int SIZE = 32;

/**

* The number of bytes used to represent a {@code int} value in two's

* complement binary form.

*

* @since 1.8

*/

public static final int BYTES = SIZE / Byte.SIZE;//这个我加的注释 Byte.SIZE = 8;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值