标签:[] valueof 一个 int com cte string test public
http://www.verejava.com/?id=17159727064934
public class Test {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// 8 种基本数据类型对应的包装类
// byte Byte
// short Short
// int Integer
// long Long
// float Float
// double Double
// char Character
// boolean Boolean
//
// 装箱和拆箱
// 装箱: 将一个基本数据类型转换成包装类 new Integer(int i)
// 拆箱: 将一个包装类转换成基本数据类型 int Integer.intValue();
int i=100;
Integer integer=new Integer(i);//装箱
System.out.println(i);
System.out.println(integer);
int i2=integer.intValue();//拆箱
System.out.println(i2);
// int Integer.parseInt(String s)
String str="200";
int i3=Integer.parseInt(str);
System.out.println(i3);
// String Integer.toString(int i)
int i4=300;
String str2=Integer.toString(i4);
System.out.println(str2);
// 3. Integer Integer.valueOf(String s)
String str3="400";
Integer integer2= Integer.valueOf(str3);
System.out.println(integer2);
}
}
http://www.verejava.com/?id=17159727064934
标签:[] valueof 一个 int com cte string test public
原文地址:https://www.cnblogs.com/verejava/p/9216570.html