摘要:
1、wait()、notify/notifyAll() 方法是Object的本地final方法,无法被重写。 2、wait()使当前线程阻塞,前提是 必须先获得锁,一般配合synchronized 关键字使用,即,一般在synchronized 同步代码块里使用 wait()、notify/noti 阅读全文
摘要:
private static void fixed(){ ExecutorService executorService = Executors.newFixedThreadPool(1); for (int i = 0; i < 100; i++) { executorService.execut 阅读全文
摘要:
private static void scheduled(){ //创建一个定时执行的线程池 ScheduledExecutorService scheduledExecutorService = Executors.newScheduledThreadPool(3); scheduledExec 阅读全文
摘要:
事件对象 package com.wzq.demoftl.observer; import org.springframework.context.ApplicationEvent; public class ObserverEvent extends ApplicationEvent { priv 阅读全文
摘要:
//创建一个线程池 ExecutorService pool = Executors.newFixedThreadPool(100); //创建多个有返回值的任务 List<Future> list = new ArrayList<Future>(); for (int i = 0; i < 100 阅读全文
摘要:
File file = new File("D:\\softTemp\\student.out"); ObjectOutputStream objectOutputStream = new ObjectOutputStream(new FileOutputStream(file)); Student 阅读全文