package day01;
public class 数据类型使用 {
public static void main(String[] args) {
System.out.println("数值型---整数型");
/* byte(字节 -- 8) short(短整型---16)
int(整型 -- 32 ) long(长正型---64)
* 整数型:默认使用的int类型
* 使用long类型的时候,会在后面添加"L",表示该数据为long类型
*/
byte b1 = 12;
//byte b2 = 128; //error
byte b3 = 127;
short sh1 = 300;
int i1 = 111223333; //大约21亿
//int i2 = 2222222222; //error
//long la = 2222222222;
long Lb = 22222222222L;
/*
* 浮点类型
* float( 32 ) double(64 )
* 默认是double类型
*/
float f1 = 3.14F;
double d1 = 3.14;
/*
* char 字符 表示的是单个字符 使用''引起来
* 我们可以使用数字来进行赋值
* String 字符串 可以表示多个字符 使用" "引来来
*/
char ch1 = 'A';
char ch2 = '*';
char ch3 = '啊';
// char ch4 = 'aaaa'; //是错误的写法
String str ="xxxx";
charch5 = 65;// 70 97 100
System.out.println("65 = " +ch5);//syso -->alt + /
char ch6 = 70;
System.out.println("70 = " +ch6);
char ch7 = 97;
System.out.println("97 = " +ch7);
char ch8 = 100;
System.out.println("100 = " +ch8);
//有些字符具有特殊的含义 \ 转义字符 --->
char ch9 = '\\';
System.out.println("ch9 " +ch9);
System.out.println("------------");
System.out.println('\n'); //换行
System.out.println('\n');
System.out.println('\n');
System.out.println("------------");
/*
* boolean 布尔类型 用于表示 真 / 假
* 只有两个值 true / false
*/
}
}