鬼手2022玩轉(zhuǎn)PC逆向
public static void main(String[] args) {
? ? ? ?List<Integer> list = Collections.synchronizedList(new ArrayList<>());
? ? ? ?new Thread(() -> {
? ? ? ? ? ?for (int i = 0; i < 10000; i++) {
? ? ? ? ? ? ? ?list.add(1);
? ? ? ? ? ?}
? ? ? ?}, "A").start();
標(biāo)簽: