1.基本包装类
基本数据类型 封装类 获取封装数值
byte Byte byteValue()
short Short shortValue()
int Integer intValue()
long Long longValue()
float Float floatValue()
double Double doubleValue()
char Character
boolean Boolean
2.以创建对象主要有以下以整形为例一般有两种方法:
Integer i = new Integer(10);
Integer i = Integer.valueOf(10);
3.将字符串解析成int整数
Integer.parseInt("255") 255
Integer.parseInt("11111111", 2) 255
Integer.parseInt("377", 8) 255
Integer.parseInt("ff", 16) 255
Double.parseDouble("3.14")
Long.parseLong("99999999999999")
Boolean.parseBoolean("true");
4.十进制转换
Ingeger.toBinaryString(255) "11111111"
Ingeger.toOctalString(255) "377"
Ingeger.toHexString(255) "ff"
5.浮点数
Infinity 无穷大
NaN: Not a Number
原文:http://www.cnblogs.com/fazheng/p/5081203.html