Java标识符规定:由数字、字母、下划线、$、¥组成;不能数字开头;大小写敏感;不全是关键字; 关键字:有特殊用途的单词,如:break、case、char、for、if、void、int、long等 八大基本数据类型:byte、short、int、long、char、double、float、boolean 四大引用类型:String字符串、数组、类、接口 运算符与表达式: ①算术...
java.math.BigDecimal java.math.BigInteger 分别处理无限精度的浮点和整型 BigInteger bi = new BigInteger("10");System.out.println(bi.pow(308));