使用println()导致多少性能损失?

时间:2018-06-09 20:04:29

标签: java

我想知道使用print("... \n ...")而不是println("...")来向控制台打印多行的性能有多好,例如

“这是第一行,

这是第二行。“

方法1更具可读性,但性能会有多差:

System.out.println("This is line one,");
System.out.println("This is line two.");

比方法2:

System.out.print("This is line one, \n This is line two.");

提前致谢

0 个答案:

没有答案