数据类型分类:
A:基本数据类型
B:引用数据类型(类,接口,数值)
基本数据类型:4类8种
1、整数
byte short int long(1,2,4,8字节。每字节8位)
2、浮点数
float double(4,8)
3、字符
char (2)
4、布尔
boolean 1
byte b=10;
short s= 100;
int i = 1000;
long j = 100000000000000L;
float f = 12.345F;
doube d = 12.345;
char ch = 'a';
boolean flag = ture;
强制转换示例
int c = a + b;
byte c = (byte) (a + b);