Do you want to convert int
s to char
s?:
int yourInt = 33;
char ch = (char) yourInt;
System.out.println(yourInt);
System.out.println(ch);
// Output:
// 33
// !
Or do you want to convert int
s to String
s?
int yourInt = 33;
String str = String.valueOf(yourInt);
Or what is it that you mean?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…