Java Synchronized

作者: 奔跑的笨鸟 | 来源:发表于2017-06-27 21:22 被阅读13次

    Java中有时候需要同步可能用到Synchronized, 它可以用在方法和代码块中,它在执行synchronized 代码时,实际上是获得的对象锁,比如在执行方法里面的一个synchronized 方法的时候,其他的synchronized方法都得阻塞。

    package cn.true123;
    
    import java.text.SimpleDateFormat;
    
    class TestSynChronizedMethod {
        private String getDate(long date) {
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
            return simpleDateFormat.format(date);
        }
    
        public synchronized void f1() {
            System.out.println("f1 locked! " + getDate(System.currentTimeMillis()));
            try {
                Thread.sleep(1000 * 2);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("f1 will unlock" + getDate(System.currentTimeMillis()));
        }
    
        public synchronized void f2() {
            System.out.println("f2 locked! " + getDate(System.currentTimeMillis()));
        }
    }
    
    public class TestThread {
        public static void main(String[] args) {
            TestSynChronizedMethod testSynChronizedMethod = new TestSynChronizedMethod();
            testSynChronizedMethod.f1();
            testSynChronizedMethod.f2();
        }
    }
    
    

    程序执行结果:

    f1 locked! 20170627 21:12:50
    f1 will unlock20170627 21:12:52
    f2 locked! 20170627 21:12:52
    
    

    从结果看,多个Synchronized 方法,只能有一个方法在执行,synchronized块也一样。

    相关文章

      网友评论

        本文标题:Java Synchronized

        本文链接:https://www.haomeiwen.com/subject/puqecxtx.html