Logo

Programming-Idioms

History of Idiom 55 > diff from v53 to v54

Edit summary for version 54 by programming-idioms.org:
New Java implementation by user [programming-idioms.org]

Version 53

2017-03-24, 20:28:46

Version 54

2017-03-24, 20:29:43

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 = String.valueOf(i);
Comments bubble
This is a static method.
Doc URL
https://docs.oracle.com/javase/7/docs/api/java/lang/String.html#valueOf(int)
Origin
http://stackoverflow.com/a/4105406/871134