数据类型
代码
public class VariableDemol3 {
public static void main(String[] args){
//byte
//-128 到 +127
byte b = 10;
System.out.println(b);
//short
short s = 20;
System.out.println(s);
//int
int i = 30;
System.out.println(i);
//long
//在定义long类型的变量的时候要在数据值后面加一个L作为后缀,不区分大小写但建议大写
long l = 9999999999L;
System.out.println(l);
//float
//在定义float类型的变量时要在其后加F
float f = 2.345F;
System.out.println(f);
//char
char c = '中';
System.out.println(c);
//boolean
boolean o = true;
System.out.println(o);
}
}
小结
1、java的数据类型分为:基本数据类型和引用数据类型
2、byte的取值范围是-128到+127
3、整数和小数的取值范围的大小关系:double>float>long>int>short>byte
4、long要用L标识,float要用F标识
5、小数默认使用double
标签:0108,float,数据类型,System,long,println,out From: https://www.cnblogs.com/cxllxc/p/17276297.html