概述
将基本数据类型封装成对象的好处在于可以在对象中定义更多的功能方法操作该数据。
常用操作之一
用于基本数据类型和字符串之间的转换
Integer类的概述和使用
1.包装一个对象中的原始类型int的值
```java
public class Study {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Integer i1=Integer.valueOf(100);
System.out.println(i1);
Integer i2=Integer.valueOf("100");
System.out.println(i2);
}
}
int和String的相互转换
public class Study {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int number=100;
//int转String
//方式一
String s1=""+number;
System.out.println(s1);
//方式二
String s2=String.valueOf(number);
System.out.println(s2);
//String转int
String s="100";
//方式一
//String --integer --int
Integer i=Integer.valueOf(s);
int x=i.intValue();
System.out.println(x);
//方式二
int y=Integer.parseInt(s);
System.out.println(y);
}
}