H
Harish
Object o = "Hello, World";
.....
String x1 = o.toString();
// or
String x2 = (String)o;
....
which one will perform better? typecast or toString?
.....
String x1 = o.toString();
// or
String x2 = (String)o;
....
which one will perform better? typecast or toString?