测试未用synchronized修饰的方法对已加锁的对象的操作能否成功

倖福魔咒の 提交于 2020-03-05 18:40:11
public class TestSync implements Runnable{

    int num = 100;
    
    public static void main(String[] args){
        TestSync syn = new TestSync();
        Thread t = new Thread(syn);
        t.start();
        try{
            Thread.sleep(1000);
        } catch(InterruptedException e){
            e.printStackTrace();
        }
        syn.num = 500;
        System.out.println(syn.num);
     
    }
 
    public synchronized void run(){
        
        num = 10000;
        
         try{
            Thread.sleep(5000);
        } catch(InterruptedException e){
            e.printStackTrace();
        }
        System.out.println("num:" + num);
    }

}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!