java中synchronized修饰的方法和代码块

Java中synchronized修饰的方法和代码块

    public class Test {
        public static void main(String[] args) {

            // 测试synchronized修饰的方法
            new Thread(new Runnable() {
                @Override
                public void run() {
                    Test.testsyncmethod();
                }
            }, "t1").start();
            new Thread(new Runnable() {
                @Override
                public void run() {
                    Test.testsyncmethod();
                }
            }, "t2").start();

            // 测试synchronized修饰的代码块
            final Test test = new Test();
            new Thread(new Runnable() {
                @Override
                public void run() {
                    test.testsyncCode();
                }
            }, "t1").start();
            new Thread(new Runnable() {
                @Override
                public void run() {
                    test.testsyncCode();
                }
            }, "t2").start();

            // 测试synchronized(this)同步代码块
            ThreadTest tt = new ThreadTest();
            Thread t1 = new Thread(tt, "t1");
            Thread t2 = new Thread(tt, "t2");
            t1.start();
            t2.start();

        }

        /***
         * synchronized修饰的方法,并发线程同事调用时,一个时间内只有一个线程得到执行。其他线程必须等待当前线程执行完这个方法后才能执行
         */
        public static synchronized void testsyncmethod() {
            for (int i = 0; i < 10; i++) {
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println(Thread.currentThread().getName() + " " + i);
            }
        }

        /***
         * synchronized修饰的方法,并发线程同事调用时,一个时间内只有一个线程得到执行。其他线程必须等待当前线程执行完这个方法后才能执行
         */
        public void testsyncCode() {
            synchronized (this) {
                for (int i = 0; i < 10; i++) {
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }

}

class ThreadTest implements Runnable {

    @Override
    public void run() {
        // synchronized(this)同步代码块时,一个时间内只能有一个线程得到执行。另一个线程必须等待当前线程执行完这个代码块以后才能执行该代码块
        synchronized (this) {
            for (int i = 0; i < 5; i++) {
                System.out.println(Thread.currentThread().getName() + " " + i);
            }
        }
        System.out.println(Thread.currentThread().getName() + "--");
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值