package chapter02;标签:基本,10,true,数据类型,double,类型,TODO From: https://www.cnblogs.com/heiqiushuai/p/17080148.html
public class Java03_Datatype_02 {
public static void main(String[] args) {
String name = "zhangsan";
// TODO 基本数据类型
// TODO 1.整数类型
// byte :8位
byte b = 10;
// short :16位
short s = 10;
// int :32位
int i = 10;
// long : 64位
long lon = 10;
// TODO 2.浮点类型:含有小数点的数据类型
// 根据计算精度分为
// 默认情况下,小数点的数据会被识别为精度较高的双精度double型
// float : 单精度浮点类型,数据需要使用F(f)结尾
float f = 1.0F;
// double : 双精度浮点类型
double d = 2.0;
// TODO 3.字符类型
// 所谓的字符类型,就是使用符号标识文字类容
char c = '@';
// TODO 4.布尔类型
// true,false,标识判断条件是否成立,成立为true,不成立为false
Boolean bln = true;
}
}