前提:
在学习基本数据类型以前,咱们先认识一下这两个单词:java
一、bit --位:位是计算机中存储数据的最小单位,指二进制数中的一个位数,其值为“0”或“1”。
二、byte --字节:字节是计算机存储容量的基本单位,一个字节由8位二进制数组成。在计算机内部,一个字节能够表示一个数据,也能够表示一个英文字母,两个字节能够表示一个汉字。
1Byte=8bit (1B=8bit)
1KB=1024Byte(字节)=8*1024bit
1MB=1024KB
1GB=1024MB数组
1TB=1024GB学习
基本数据类型:
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)测试
这种数据类型表明一个比特的信息,但它的“大小”没有明确的定义。(参考).net
测试代码以下:翻译
/**
* 输出各类基础类型的bit大小,也就是所占二进制的位数,1Byte=8bit
*/
private static void getBit() {
//The number of bits used to represent a {@code byte} value in two's complement binary form.
//用来表示Byte类型的值的位数,说到底,就是bit的个数,也就是二进制的位数。
System.out.println("Byte: " + Byte.SIZE);
System.out.println("Short: " + Short.SIZE);
System.out.println("Character: " + Character.SIZE);
System.out.println("Integer: " + Integer.SIZE);
System.out.println("Float: " + Float.SIZE);
System.out.println("Long: " + Long.SIZE);
System.out.println("Double: " + Double.SIZE);
System.out.println("Boolean: " + Boolean.toString(false));
}
执行结果如图:code
基本数据类型注意事项:
一、未带有字符后缀标识的整数默认为int类型;未带有字符后缀标识的浮点数默认为double类型。orm
二、若是一个整数的值超出了int类型可以表示的范围,则必须增长后缀“L”(不区分大小写,建议用大写,由于小写的L与阿拉伯数字1很容易混淆),表示为long型。blog
三、带有“F”(不区分大小写)后缀的整数和浮点数都是float类型的;带有“D”(不区分大小写)后缀的整数和浮点数都是double类型的。ci
四、编译器会在编译期对byte、short、int、long、float、double、char型变量的值进行检查,若是超出了它们的取值范围就会报错。
五、int型值能够赋给全部数值类型的变量;
long型值能够赋给long、float、double类型的变量;
float型值能够赋给float、double类型的变量;
double型值只能赋给double类型变量
基本数据类型取值范围:
取值范围如图所示:
做者:Roger_CoderLife
连接:https:blog.csdn.net/Roger_CoderLife/article/details/82586035
本文为Roger_CoderLife的原创文章,著做权归做者全部,转载请注明原文出处,欢迎转载!