码迷,mamicode.com
首页 > 其他好文 > 详细

Synchronized的基本使用

时间:2017-10-01 15:14:58      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:stat   syn   dem   代码块   exception   静态   exce   run   read   

/*

对静态方法的同步本质上是对类的同步

(1)修饰普通方法、(2)修饰静态方法、(3)修饰代码块

*/

public class ThreadDemo {
    //public static synchronized void method1()   (2)
    public synchronized void method1() {    (1)

        System.out.println("Method 1 start");
        try {
            // synchronized (this) {   (3)
            System.out.println("Method 1 execute");
            Thread.sleep(3000);
            // }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("Method 1 end");
    }
    
    //public static synchronized void method2()    (2)
    public synchronized void method2() {   (1)
        System.out.println("Method 2 start");
        try {
            // synchronized (this) {    (3)
            System.out.println("Method 2 execute");
            Thread.sleep(1000);
            // }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("Method 2 end");
    }

    public static void main(String[] args) {
        final ThreadDemo test = new ThreadDemo();
        new Thread(new Runnable() {
            @Override
            public void run() {
                test.method1();
            }
        }).start();

        new Thread(new Runnable() {
            @Override
            public void run() {
                test.method2();
            }
        }).start();
    }
}

Synchronized的基本使用

标签:stat   syn   dem   代码块   exception   静态   exce   run   read   

原文地址:http://www.cnblogs.com/fwx-jy/p/7617182.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!