/**
* Prints a String and then terminate the line. This method behaves as
* though it invokes <code>{@link #print(String)}</code> and then
* <code>{@link #println()}</code>.
*
* @param x The <code>String</code> to be printed.
*/
public void println(String x) {
synchronized (this) {
print(x);
newLine();
}
}
是线程安全的
System.out 是一个 PrintStream实例,里面的
println
方法实现如下:方法是经过
synchronized
同步的。也就是说多线程时同时有多个写入System.out操作时,因同步原因效率是很低的,这也是发明了各种logger的原面之一。