全局锁

方法一: 


class Sync{
    public    void test() {
        synchronized(Sync.class){
        System.out.println ( "test方法开始,当前线程为:" + Thread.currentThread ( ).getName ( ) );
        try {
            Thread.sleep ( 1000 );
        } catch (InterruptedException e) {
            e.printStackTrace ( );
        }
        System.out.println ( "test方法结束,当前线程为:" + Thread.currentThread ( ).getName ( ) );
    }
    }
}
class  Mythread10 extends Thread{
    private final Sync sync;
    public Mythread10(Sync sync){
        this.sync=sync;
    }
    @Override
    public void run() {
        sync.test ();

    }
}
public class Test {
    public static void main(String[] args) {
        Sync sync=new Sync ();
        for(int i=0;i<5;i++){
            Thread thread=new Mythread10(sync);
            thread.setName ( "Thread-"+i);
            thread.start ();
        }

    }
}

 方法二:传入参数

class Sync{
    public void test() {
        synchronized(this){
            System.out.println ( "test方法开始,当前线程为:" + Thread.currentThread ( ).getName ( ) );
            try {
                Thread.sleep ( 1000 );
            } catch (InterruptedException e) {
                e.printStackTrace ( );
            }
            System.out.println ( "test方法结束,当前线程为:" + Thread.currentThread ( ).getName ( ) );
        }
    }
}
class  Mythread10 extends Thread{
    private final Sync sync;
    public Mythread10(Sync sync){
        this.sync=sync;
    }
    @Override
    public void run() {
      this.sync.test ();

    }
}
public class Test {
    public static void main(String[] args) {
        Sync sync=new Sync ();
        for(int i=0;i<5;i++){
            Thread thread=new Mythread10(sync);
            thread.setName ( "Thread-"+i);
            thread.start ();
        }

    }
}
发布了129 篇原创文章 · 获赞 4 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/beststudent_/article/details/92020779