I was wondering how much better for performance is using print("... \n ...")
thanprintln("...")
for printing multiple lines to the console for example with
"This is line one,
This is line two."
Method 1 is more readable however how much worse would it be for performance:
System.out.println("This is line one,");
System.out.println("This is line two.");
than Method 2:
System.out.print("This is line one, \n This is line two.");
Thanks in advance