*int-->String(int转换为String)
1,+""
int i=100;
System.out.println(""+10);
2,public static String valueOf(int i)
String str=String.valueOf(i);
3,int-->Integet-->String(Integer类的toString()方法)
Integer i1=new Ingeter(i);
String str1=i1.toString();
4,public static String toString(int i) Integer类的静态方法
String str2=Integer(i);
开发最常用的是第1和第2种方法
*String-->int(String转换为int)
1,String-->Integer-->int
String str="200";
|
|