- int 4字节,long 8字节 1字节是2^8
- final 常量只能赋值一次
- Math的方法sqrt,pow,maxmin,exp ,PI,E,round
- 位 :>>变大 <<变小 & | ^异或 ~非 (异或自己是0),>>>无符号右移
- &&与 || 或
- 字符串:
- substring(0,3) __提取子串
- + /join__拼接 一个/多个
- 不可变字符串,虚拟机字符串常量共享
- equals和equalsIgnore...判断字符串相等
- int compareTo(String other)
- int indexOf(String str)不存在返回-1
- toLowerCase( )
- 删去前后的空格trim
- Scanner in = new Scanner(System.in); while(in.hasnext) int x = in.nextint()
- 大数值 BigInteger 不能±,只能add,multiply
- int[][] a = {{1,2},{3,4}}