Logo

Programming-Idioms

History of Idiom 55 > diff from v51 to v52

Edit summary for version 52 by programming-idioms.org:
[Java] +DocURL

Version 51

2016-11-30, 20:48:01

Version 52

2017-03-24, 20:27:54

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration
Extra Keywords
int base radix conversion
Extra Keywords
int base radix conversion
Code
String s=((Integer)i).toString();
Code
String s=((Integer)i).toString();
Doc URL
https://docs.oracle.com/javase/7/docs/api/java/lang/Integer.html#toString()