标签:方法 syn zed 运行 code div out class one
synchronized 锁,对于非静态方法,默认为this,对于静态方法,默认为 该类的运行时类实例.
class Number { public synchronized void getOne(){ System.out.println("one"); } public synchronized void getTwo(){ System.out.println("two"); } public void getThree(){ System.out.println("three"); } }
标签:方法 syn zed 运行 code div out class one
原文地址:https://www.cnblogs.com/superxuezhazha/p/12490776.html