公众号:架构师与哈苏
关注公众号进入it交流群! 公众号:架构师与哈苏 不定时都会推送一些实用的干货。。。
摘要: 1、wait()、notify/notifyAll() 方法是Object的本地final方法,无法被重写。 2、wait()使当前线程阻塞,前提是 必须先获得锁,一般配合synchronized 关键字使用,即,一般在synchronized 同步代码块里使用 wait()、notify/noti 阅读全文
posted @ 2021-08-04 17:04 公众号/架构师与哈苏 阅读(305) 评论(0) 推荐(0) 编辑
摘要: private static void fixed(){ ExecutorService executorService = Executors.newFixedThreadPool(1); for (int i = 0; i < 100; i++) { executorService.execut 阅读全文
posted @ 2021-08-04 16:39 公众号/架构师与哈苏 阅读(33) 评论(0) 推荐(0) 编辑
摘要: private static void scheduled(){ //创建一个定时执行的线程池 ScheduledExecutorService scheduledExecutorService = Executors.newScheduledThreadPool(3); scheduledExec 阅读全文
posted @ 2021-08-04 15:58 公众号/架构师与哈苏 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 事件对象 package com.wzq.demoftl.observer; import org.springframework.context.ApplicationEvent; public class ObserverEvent extends ApplicationEvent { priv 阅读全文
posted @ 2021-08-04 15:26 公众号/架构师与哈苏 阅读(20) 评论(0) 推荐(0) 编辑
摘要: //创建一个线程池 ExecutorService pool = Executors.newFixedThreadPool(100); //创建多个有返回值的任务 List<Future> list = new ArrayList<Future>(); for (int i = 0; i < 100 阅读全文
posted @ 2021-08-04 15:21 公众号/架构师与哈苏 阅读(60) 评论(0) 推荐(0) 编辑
摘要: File file = new File("D:\\softTemp\\student.out"); ObjectOutputStream objectOutputStream = new ObjectOutputStream(new FileOutputStream(file)); Student 阅读全文
posted @ 2021-08-04 14:14 公众号/架构师与哈苏 阅读(112) 评论(0) 推荐(0) 编辑