系列六、多线程集合不安全

一、多线程List集合不安全

1.1、List集合不安全案例代码

java 复制代码
/**
 * @Author : 一叶浮萍归大海
 * @Date: 2023/11/20 12:38
 * @Description: 多线层环境下List集合不安全案例代码
 */
public class NotSafeListMainApp {

    public static void main(String[] args) {
        List<String> list = new ArrayList<>();
        for (int i = 1; i <= 30; i++) {
            new Thread(() -> {
                list.add(UUID.randomUUID().toString().toLowerCase().substring(0, 8).replaceAll("-", ""));
                System.out.println("【当前线程】:" + Thread.currentThread().getName() + ",【当前list】:" + list);
            }, String.valueOf(i)).start();
        }
    }

}

1.2、解决方法

java 复制代码
/**
 * @Author : 一叶浮萍归大海
 * @Date: 2023/11/20 12:38
 * @Description: 多线层环境下List集合不安全解决案例代码
 */
public class NotSafeListPlusMainApp {

    public static void main(String[] args) {
        // List<String> list = Collections.synchronizedList(new ArrayList<>());
        List<String> list = new CopyOnWriteArrayList<>();
        for (int i = 1; i <= 30; i++) {
            new Thread(() -> {
                list.add(UUID.randomUUID().toString().toLowerCase().substring(0, 8).replaceAll("-", ""));
                System.out.println("【当前线程】:" + Thread.currentThread().getName() + ",【当前list】:" + list);
            }, String.valueOf(i)).start();
        }
    }

}

二、多线程HashSet集合不安全

2.1、HashSet集合不安全案例代码

java 复制代码
/**
 * @Author : 一叶浮萍归大海
 * @Date: 2023/11/20 12:38
 * @Description: 多线层环境下HashSet集合不安全案例代码
 */
public class NotSafeHashSetMainApp {

    public static void main(String[] args) {
        Set<String> hashSet = new HashSet<>();
        for (int i = 1; i <= 30; i++) {
            new Thread(() -> {
                hashSet.add(UUID.randomUUID().toString().toLowerCase().substring(0, 8).replaceAll("-", ""));
                System.out.println("【当前线程】:" + Thread.currentThread().getName() + ",【当前hashSet】:" + hashSet);
            }, String.valueOf(i)).start();
        }
    }

}

2.2、解决方法

java 复制代码
/**
 * @Author : 一叶浮萍归大海
 * @Date: 2023/11/20 12:38
 * @Description: 多线层环境下HashSet集合不安全解决案例代码
 */
public class NotSafeHashSetPlusMainApp {

    public static void main(String[] args) {
        // Set<String> hashSet = Collections.synchronizedSet(new HashSet<>());
        Set<String> hashSet = new CopyOnWriteArraySet<>();
        for (int i = 1; i <= 30; i++) {
            new Thread(() -> {
                hashSet.add(UUID.randomUUID().toString().toLowerCase().substring(0, 8).replaceAll("-", ""));
                System.out.println("【当前线程】:" + Thread.currentThread().getName() + ",【当前hashSet】:" + hashSet);
            }, String.valueOf(i)).start();
        }
    }

}

三、多线程HashMap集合不安全

3.1、HashMap集合不安全案例代码

java 复制代码
/**
 * @Author : 一叶浮萍归大海
 * @Date: 2023/11/20 12:38
 * @Description: 多线层环境下HashMap集合不安全案例代码
 */
public class NotSafeHashMapMainApp {

    public static void main(String[] args) {
        HashMap<String,Object> hashMap = new HashMap<>();
        for (int i = 1; i <= 30; i++) {
            new Thread(() -> {
                hashMap.put(UUID.randomUUID().toString().substring(0, 1),UUID.randomUUID().toString().toLowerCase().substring(0, 8).replaceAll("-", ""));
                System.out.println("【当前线程】:" + Thread.currentThread().getName() + ",【当前hashMap】:" + hashMap);
            }, String.valueOf(i)).start();
        }
    }

}

3.2、解决方法

java 复制代码
/**
 * @Author : 一叶浮萍归大海
 * @Date: 2023/11/20 12:38
 * @Description: 多线层环境下HashMap集合不安全解决案例代码
 */
public class NotSafeHashMapPlusMainApp {

    public static void main(String[] args) {
        // Map<String,Object> hashMap = Collections.synchronizedMap(new HashMap<>());
        Map<String,Object> hashMap = new ConcurrentHashMap<>();
        for (int i = 1; i <= 30; i++) {
            new Thread(() -> {
                hashMap.put(UUID.randomUUID().toString().substring(0, 1),UUID.randomUUID().toString().toLowerCase().substring(0, 8).replaceAll("-", ""));
                System.out.println("【当前线程】:" + Thread.currentThread().getName() + ",【当前hashMap】:" + hashMap);
            }, String.valueOf(i)).start();
        }
    }

}
相关推荐
慕木沐4 天前
【JUC并发】cmpxchg和lock指令
后端·并发·juc·汇编指令
HelloWorld. py2 个月前
JUC-ReentrantLock 锁粒度为什么更小
java·juc
lazy★boy2 个月前
JUC学习笔记(一)
juc
lazy★boy2 个月前
JUC学习笔记(三)
juc
小小工匠3 个月前
J.U.C Review - 常见的通信工具类解析
juc·countdownlatch·exchanger·phaser·semaphore·cyclicbarrier
水w3 个月前
“线程池中线程异常后:销毁还是复用?”
java·开发语言·线程池·juc
Czi橙3 个月前
深刻理解JDK中线程池的使用
java·spring·jdk·多线程·并发编程·juc
luming-023 个月前
图文详解ThreadLocal:原理、结构与内存泄漏解析
java·开发语言·jvm·java-ee·juc
Dexu73 个月前
【Java 并发编程】(三) 从CPU缓存开始聊 volatile 底层原理
juc·java并发编程
少不入川。4 个月前
ThreadLocal源码分析
java·juc·threadlocal