thread

ThreadPool和内部类的内存泄露

private void getItemInfo(String site) { // ... ExecutorService pool = Executors.newSingleThreadExecutor(); pool.submit(task); } getItemInf
2024-01-10