目录
- 基本数据类型
- 扩展数据类型
基本数据类型 | 备注 |
byte | 整数类型:-128~+127 |
short | 整数类型:-32768~+32767 |
int | 整数类型: -2147483648~+2147483637 |
long | 整数类型:范围更大 |
float | 小数类型 |
double | 小数类型:范围比float大 |
char | 字符:’a’、’b’、’你’,字符长度为一个字符 |
boolean | 只有两个值true false |
练习:用记事本+dos方法输出整型的127
public class student{
public static void main(String[] args){
byte x=127;
System.out.println(x);
}
}