文章目录说在前面的话newFixedThreadPoolnewWorkStealingPoolnewSingleThreadExecutornewCachedThrea
面试题总是会问写一个线程安全问题的例子,最简单的就是多线程操作同一个成员变量,而且方法没有加锁;如下:解决方法可以是写一个safeMe
public class ThreadUnSafeDemo { // private AtomicInteger value = new AtomicInteger(1); private static int value = 1;// private static volatile int value = 1; public static void main(Strin...
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号