(二)synchronized关键字(1)

本文主要介绍synchronized关键字在Java并发编程中的应用,包括同步方法、变量安全性、多个对象多个锁、同步方法与锁对象、脏读、锁重入以及同步不具有继承性等概念。通过示例解析了synchronized如何保证线程安全,以及在不同场景下的使用注意事项。
摘要由CSDN通过智能技术生成

将分为两篇文章介绍synchronized,分为同步方法和同步代码块,所以分两部分进行介绍。

(1) synchronized同步方法

一 简介

Java并发编程这个领域中synchronized关键字一直都是元老级的角色,被称为“重量级锁”。但是,在JavaSE1.6之后进行了主要包括为了减少获得锁和释放锁带来的性能消耗而引入的偏向锁和轻量级锁以及其他各种优化之后变得在某些情况下并不是那么重了。

这一篇不会介绍synchronized关键字的实现原理,更多的是synchronized关键字的使用。

二 变量安全性

非线程安全“ 问题存在于实例变量中,如果是方法内部的私有变量,则不存在非线程安全问题,所以结果也就是”线程安全“的了。

如果两个线程同时操作对象中的实例变量,则会出现非线程安全,解决的办法就是在方法上加上synchronized关键字即可。

三 多个对象多个锁

先看例子:

public class HasSelfPrivateNum {

    private int num = 0;

    synchronized public void addI(String username) {
        try {
            if (username.equals("a")) {
                num = 100;
                System.out.println("a set over!");
                //如果去掉hread.sleep(2000),那么运行结果就会显示为同步的效果
                Thread.sleep(2000);
            } else {
                num = 200;
                System.out.println("b set over!");
            }
            System.out.println(username + " num=" + num);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

}


public class ThreadA extends Thread {

    private HasSelfPrivateNum numRef;

    public ThreadA(HasSelfPrivateNum numRef) {
        super();
        this.numRef = numRef;
    }

    @Override
    public void run() {
        super.run();
        numRef.addI("a");
    }

}


public class ThreadB extends Thread {

    private HasSelfPrivateNum numRef;

    public ThreadB(HasSelfPrivateNum numRef) {
        super();
        this.numRef = numRef;
    }

    @Override
    public void run() {
        super.run();
        numRef.addI("b");
    }

}


public class Run {

    public static void main(String[] args) {

        HasSelfPrivateNum numRef1 = new HasSelfPrivateNum();
        HasSelfPrivateNum numRef2 = new HasSelfPrivateNum();

        ThreadA athread = new ThreadA(numRef1);
        athread.start();

        ThreadB bthread = new ThreadB(numRef2);
        bthread.start();

    }

}


运行结果:

a set over!
b set over!
b num=200
    停顿一会才继续执行
a num=100

上面实例中两个线程ThreadA和ThreadB分别访问同一个类的不同实例的相同名称的同步方法,但是效果确实异步执行。

为什么会这样呢?

这是因为synchronized取得的锁都是对象锁,而不是把一段代码或者方法当做锁。所以在上面的实例中,哪个线程先执行synchronized关键字的方法,则哪个线程就持有该方法所属对象的锁Lock,那么其他线程就只能等待(前提是多个线程访问的是同一个对象)。本例中明显是两个对象。

在本例中创建两个HasSelfPrivateNum类对象,所以就产生了两个锁。当ThreadA的引用执行addI方法中的Thread.sleep(2000)语句时,ThreadB就会“乘机执行”。所以才会导致执行结果(备注:由于runThread.sleep(2000),“a num=100”停顿了两秒才输出)。

四 synchronized方法与锁对象

通过上面我们知道synchronized取得的锁都是对象锁,而不是把一段代码或方法当做锁。如果多个线程访问的是同一个对象,哪个线程先执行带synchronized关键字的方法,则哪个线程就持有该方法,那么其他线程只能等待。如果多个线程访问的是多个对象则不一定,因为多个对象会产生多个锁。

那么我们思考一下,当多个线程访问的是同一个对象中的非synchronized类型方法会是什么效果?

**答案是:**会异步调用非synchronized类型方法,解决办法就是在非synchronized类型方法前加上synchronized关键字即可。

五 脏读

发生脏读的情况是在读取实例变量时,此时值已经被其他线程更改了。

public class PublicVar {

    public String username = "A";
    public String password = "AA";

    synchronized public void setValue(String username, String password) {
        try {
            this.username = username;
            Thread.sleep(5000);
            this.password = password;

            System.out.println("setValue method thread name="
                    + Thread.currentThread().getName() + " username="
                    + username + " password=" + password);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
     //该方法前加上synchronized关键字就同步了
     public void getValue() {
        System.out.println("getValue method thread name="
                + Thread.currentThread().getName() + " username=" + username
                + " password=" + password);
    }
}

public class ThreadA extends Thread {

    private PublicVar publicVar;

    public ThreadA(PublicVar publicVar) {
        super();
        this.publicVar = publicVar;
    }

    @Override
    public void run() {
        super.run();
        publicVar.setValue("B", "BB");
    }
}


public class Test {

    public static void main(String[] args) {
        try {
            PublicVar publicVarRef = new PublicVar();
            ThreadA thread = new ThreadA(publicVarRef);
            thread.start();

            Thread.sleep(200);//打印结果受此值大小影响

            publicVarRef.getValue();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }
}


运行结果(没有达到效果,原意是想修改实例变量的值):

主函数 先Thread.sleep(200);
getValue method thread name=main username=B password=AA
执行线程  再Thread.sleep(5000);
setValue method thread name=Thread-0 username=B password=BB

解决办法:getValue()方法前加上synchronized关键字即可。

加上synchronized关键字后的运行结果:

主函数 先Thread.sleep(200);
执行线程  再Thread.sleep(5000);
setValue method thread name=Thread-0 username=B password=BB
getValue method thread name=main username=B password=BB

六 synchronized锁重入

“可重入锁” 概念是:自己可以再次获取自己的内部锁。比如一个线程获得了某个对象的锁,此时这个对象锁还没有释放,当其再次想要获取这个对象的锁的时候还是可以获取的,如果不可锁重入的话,就会造成死锁。

public class Service {

    synchronized public void service1() {
        System.out.println("service1");
        service2();
    }

    synchronized public void service2() {
        System.out.println("service2");
        service3();
    }

    synchronized public void service3() {
        System.out.println("service3");
    }

}


public class MyThread extends Thread {
    @Override
    public void run() {
        Service service = new Service();
        service.service1();
    }

}


public class Run {
    public static void main(String[] args) {
        MyThread t = new MyThread();
        t.start();
    }
}

运行结果:

service1
service2
service3

另外可重入锁也支持在父子类继承的环境中

public class Main {

    public int i = 10;

    synchronized public void operateIMainMethod() {
        try {
            i--;
            System.out.println("main print i=" + i);
            Thread.sleep(100);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}


public class Sub extends Main {

    synchronized public void operateISubMethod() {
        try {
            while (i > 0) {
                i--;
                System.out.println("sub print i=" + i);
                Thread.sleep(100);
                this.operateIMainMethod();
            }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}


public class MyThread extends Thread {
    @Override
    public void run() {
        Sub sub = new Sub();
        sub.operateISubMethod();
    }
}


public class Run {
    public static void main(String[] args) {
        MyThread t = new MyThread();
        t.start();
    }
}

运行结果:

sub print i=9
main print i=8
sub print i=7
main print i=6
sub print i=5
main print i=4
sub print i=3
main print i=2
sub print i=1
main print i=0

说明当存在父子类继承关系时,子类是完全可以通过“可重入锁”调用父类的同步方法。

另外出现异常时,其锁持有的锁会自动释放。

七 同步不具有继承性

如果父类有一个带synchronized关键字的方法,子类继承并重写了这个方法。

但是同步不能继承,所以还是需要在子类方法中加上synchronized关键字。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值