首页题库练习题目详情
面向对象程序设计单选题中等

以下Java代码中,哪一项能实现对对象的同步?

Apublic synchronized void method() { ... }
Bpublic void method() { synchronized (this) { ... } }
Cpublic void method() { synchronized (this.class) { ... } }
D上述所有选项都可以实现对对象的同步。