gpt4 book ai didi

java - 了解 Java 中的方法同步

转载 作者:行者123 更新时间:2023-12-01 13:22:17 25 4
gpt4 key购买 nike

我知道线程同步。但在 Merlin Hughes 所著的《Java 网络编程》一书中的这段代码中,写道 println 方法在 System.out 上同步。我不明白如何在 System.out 上同步方法。

我想问的第二个问题:println 函数是重写的方法还是只是此代码中的用户定义的方法?

import java.io.*;

public class SimpleOut {

public static void main(String[] args) throws IOException {
for (int i = 0; i < args.length; i++) {
println (args[i]);
}
}

public static void println(String msg) throws IOException {
synchronized (System.out) {
for (int i=0 ; i<msg.length(); i++) {
System.out.write(msg.charAt (i) & 0xff);
}
System.out.write('\n');
}
System.out.flush();
}

}

最佳答案

您可以在任何对象/实例上进行同步。 out 是在类 java.lang.System 中声明的类变量。

public final static PrintStream out

关于java - 了解 Java 中的方法同步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21958278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com