62,634
社区成员




public void f(int flag) {
synchronized (this) {
System.out.println("f()" + flag);
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}