byte Byte
short Short
int Integer
long Long
boolean Boolean
float Float
double Double
Char Character
基本数据类型对象包类的最常见作用
- 就是用于基本数据烈性和字符串类型之间的转换
- 基本数据类型转成字符串
基本数据类型+""
如:Integer.toString(34); - 字符串转成基本数据类型
int num = Integer.parseInt("123");//比如传入数字格式的字符串
System.out.println("num" = (num + 4));
结果:127
xxx a = Xxx.parseXxx(String)
例如:int a = Int.parseInt("123");
double b = Double.parseDouble("122.4");
boolean b = Boolean.parseBoolean("true");
Integer I = new Ingeger("123");
int num = i.intValue();
- 十进制转成其他进制
toBinaryString()
toHexString()
toOtalString() - 其他进制转成十进制
parseInt(String,radix);
int x = Integer.parseInt("110",2);
int y = Integet.parseInt("3c",16);
JDK1.5版本以后出现的新特性
Integer x = new Integer("123");
Integer y = new Integer(123);
System.out.println("x==y"+(x==y));
System.out.println("x.equals(y):"+(x.equals(y));//equals比较数值是否相同
结果:false true
网友评论