标题: 基本数据类型对象包装类 [打印本页] 作者: 画了一个圈儿 时间: 2014-8-18 11:35 标题: 基本数据类型对象包装类 基本数据类型对象包装类
数据类型 类
byte Byte
short Short
int Integer
long Long
boolean Boolean
float Float
double Double
char Character
2、字符串转成基本数据类型:
xxx a = Xxx.parseXxx(String);
int a = Integer.parseInt("123"); 必须传入数字格式的字符串
double d = Double.parseDouble("12.34");
boolean b = Boolean.parseBoolean("true"); 必须传入true 或者false
以上方法都是static修饰的,使用时通过基本数据类型对象包装类直接调用即可。
Integer i = new Integer("1234");
int num = i.intValue();
intValue也可以获取基本数据类型对象的值,返回值为int,但它不是staic修饰的,需要先建立对象再调用
4、其它进制转成十进制
parseInt(str, radix)
int x = Integer.parseInt("111",2); // x=7
int x = Integer.parseInt("14",8); // x=12
int x = Integer.ParseInt("3c",16); // x=60