Integer → int
Integer i = 6;
int r = i.intvalue();
int → Integer
int r = 6;
Integer i = new Integer(r);
String→ Integer
String str = "6";
Integer i = Integer.valueOf(str);
Integer → String
Integer i = 6;
String str =i.toString();
String→ int
String str = "6";
Integer i = Integer.valueOf(str);
int r = i.intValue();
int→ String
int i = 6;
String str =Integer.toString(i);
String str =String.valueOf(i);
// 我用的最多的
String str =i +"";
网友评论