เป็นตัวอย่างเพิ่มเติมนะครับ แปลง Integer เป็น อักษร
String s = String.valueOf(i);
String s = Integer.toString(i);
String s = Integer.toString(i, radix);// briefer but may result in extra object allocation.String s = "" + i;
เป็นตัวอย่างเพิ่มเติมนะครับ แปลง Integer เป็น อักษร
String s = String.valueOf(i);
String s = Integer.toString(i);
String s = Integer.toString(i, radix);// briefer but may result in extra object allocation.String s = "" + i;
Actions : (View-Readers)
There are no names to display.