I\'m working on a project where all conversions from int to String are done like this:
int
String
int i = 5; String strI = \"\" + i; >
int i = 5; String strI = \"\" + i;
It's not a good way.
When doing conversion from int to string, this should be used:
int i = 5; String strI = String.valueOf(i);