Hi
What are the differences in .toString / String.valueOf() / (String) ?
I have tried the following :
String a = "a";
Object o = "o";
int i = 1;
System.out.println("String Value of " + String.valueOf(i));
System.out.println("(String) " + (String)o);
System.out.println(".toString() " + i.toString()); // does not work
System.out.println(".toString() " + String(i)); // does not work
Thanks in Advance !!