public static void main(String[] args) {
// TODO 自动生成的方法存根
System.out.println("Hello,world");
// 整数扩展 进制:二进制 八进制 十进制 十六进制
int i=10;
int i2=010; //八进制0
int i3=0x10; //十六进制0x
System.out.println(i);
System.out.println(i2);
System.out.println(i3);
System.out.println("========================================================");
//浮点数的扩展? 银行业务怎么表示?钱
//float 有限 离散 舍入误差 大约 接近
//最好不要使用浮点数进行比较
//最好不要使用浮点数进行比较
//最好不要使用浮点数进行比较
//BigDecimal类 数学工具类 处理银行业务(钱)
float f=0.1f;
double d=1.0/10;
System.out.println(f==d);
float d1=2323232323232132232f;
float d2=d1+1;
System.out.println(d1==d2);
System.out.println("========================================================");
//字符类
char c1='a';
char c2='中';
System.out.println(c1);
System.out.println((int)c1); //强制转换
System.out.println(c2);
System.out.println((int)c2); //强制转换
//所有的字符的本质还是数字
//编码 Unicode表: 97=a A=65 2个字节 65536=2的16次方
//U0000 UFFFF
char c3='\u0061';
System.out.println(c3);
//转义字符
//\t 制表符
//\n
//.....
System.out.println("Hello\tword");
System.out.println("Hello\nworld");
String sa=new String("hello world");
String sb=new String("hello world");
System.out.println(sa==sb);
String sc="H";
String sd="H";
System.err.println(sc==sd);
// 以上从内存和对象分析
//布尔值扩展
boolean flag=true;
if(flag==true){
{System.out.println("1"); //新手
}
if(flag){
{System.out.println("1"); //老手
}
}
}
}
}