我想知道使用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.");
提前致谢