I can convert an integer into string using
String s = \"\" + 4; // correct, but poor style or String u = Integer.toString(4); // this is good
I
How about String.valueOf()? It's overridden overloaded for all primitive types and delegates to toString() for reference types.
String.valueOf()
toString()