面试题

public class bing {
public static void main(String[] args) {
//整数拓展 ;进制 二进制 十进制 八进制 十六进制
int i = 10;
int i2 = 010; //八进制0
//十六进制0X 0-9 A-f 16
int i3 = 0x10;
System.out.println(i);
System.out.println(i2);
System.out.println(i3);
System.out.println("====================================================================" );
//浮点数拓展 银行业务怎么表示
//floot boudlt
//最好完全使用浮点数进行比较
//BigDecimol 数学工具类

float f = 0.1f; // 0.1
double d = 1.0/10; //0.1
System.out.println(f==d); //folse
float d1 =123123132132312f;
float d2 = d1 + 1;
System.out.println(d1==d2);//true


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);
//所有的字符本质还是数字
//编码 Umicoud 2字节 65536 2进制16 = 65536


//转文字符
// \t
// \n
//System.out.println("Hello\nWorld");
//System sa = new String("Hello,Wofld");
//System sb = new String("Hello,Wofld");
//System.out.println(sa==sb);

//System sa = "Hello,Wofld";
// System sd = "Hello,Wofld";
//System.out.println(sa==sd);

boolean flag = true;
if (flag==true){}
if (flag){}





}
}

面试题

上一篇:42. 接雨水


下一篇:归档老日志的shell脚本