最佳答案
如果一个同步方法调用另一个同步方法,它是线程安全的吗?
void synchronized method1() {
method2()
}
void synchronized method2() {
}