基本数据类型 | 包装类 |
---|---|
byte | Byte |
short | Shor |
int | Integer |
long | Long |
float | Float |
double | Double |
char | Character |
boolean | Boolean |
方法名 | 说明 |
---|---|
public Integer(int value) | 根据 int 值创建 Integer 对象(过时) |
public Integer(String s) | 根据 String 值创建 Integer 对象(过时) |
public static Integer valueOf(int i) | 返回表示指定的 int 值的 Integer 实例 |
public static Integer valueOf(String s) | 返回一个保存指定值的 Integer 对象 String |
public class Demo {
public static void main(String[] args) {
//public Integer(int value):根据 int 值创建 Integer 对象(过时)
Integer i1 = new Integer(100);
System.out.println(i1);
//public Integer(String s):根据 String 值创建 Integer 对象(过时)
Integer i2 = new Integer("100");
// Integer i2 = new Integer("abc"); //NumberFormatException
System.out.println(i2);
System.out.println("--------");
//public static Integer valueOf(int i):返回表示指定的 int 值的 Integer 实例
Integer i3 = Integer.valueOf(100);
System.out.println(i3);
//public static Integer valueOf(String s):返回一个保存指定值的Integer对象String
Integer i4 = Integer.valueOf("100");
System.out.println(i4);
}
}
public class Demo {
public static void main(String[] args) {
int number = 100;
//方式1
String s1 = number + "";
System.out.println(s1);
//方式2
String s2 = String.valueOf(number);
System.out.println(s2);
}
}
public class Demo {
public static void main(String[] args) {
String s = "100";
//方式1
Integer i = Integer.valueOf(s);
int x = i.intValue();
System.out.println(x);
//方式2
int y = Integer.parseInt(s);
System.out.println(y);
}
}
Integer i = 100; // 自动装箱
i = i + 200; //i + 200 自动拆箱;i = i + 200; 是自动装箱