整数拓展
二进制—>0b
八进制—>0
十六进制—>0x
浮点数拓展
银行业务使用数学工具类----->BigDecimal
转义字符

关于String
String sa=new String(“HelloWorld”);
String sb=new String(“HelloWorld”);
System.out.println(sa==sb)
此处返回值为false
String sc= “HelloWorld”;
String sd= “HelloWorld”;
System.out.println(sc==sd)
此处返回值为true