I am wondering if there is any performance differences between
String s = someObject.toString(); System.out.println(s);
and
System.out.pr
Compared to output to the console, I doubt that any difference in performance between the two is going to be measurable. Don't optimize before you have measured and confirmed that you have a problem.