java中同步加锁的几种方式

同步加锁的几种方式:

1、使用静态代码块

static {

list = Collections.synchronizedList(list);

}

2、对方法进行加锁

public synchronized void add() {}

3、

Integer y = 5;//OK使用一个定值

synchronized (同步加锁.class、y、) {}

4、String s = new String(“asd”);、同步加锁.this、this都不行,应为是在变的值//NO

    原文作者:java锁
    原文地址: https://blog.csdn.net/vaya765169564/article/details/17376129
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞