上一页 1 2 3 4 5 6 7 ··· 24 下一页
摘要: $JDKPath$\bin\javap.exe -c $OutputPath$\$FileDirRelativeToSourcepath$\$FileNameWithoutAllExtensions$.class $OutputPath$ 使用: 结果: 阅读全文
posted @ 2021-06-17 21:24 圣金巫灵 阅读(46) 评论(0) 推荐(0) 编辑
摘要: demo: public class ThreadPoolExecutorTest { public static void main(String[] args) { Thread t = new Thread(() -> System.out.println("start...")); Thre 阅读全文
posted @ 2021-06-17 19:34 圣金巫灵 阅读(43) 评论(0) 推荐(0) 编辑
摘要: Demo: public class FutureTaskTest { public static void main(String[] args) throws Exception{ // 1. 使用线程 FutureTask task1 = new FutureTask(()-> { retur 阅读全文
posted @ 2021-06-17 17:54 圣金巫灵 阅读(41) 评论(0) 推荐(0) 编辑
摘要: Phaser是CountDownLatch和CyclicBarrier的升级版: demo: public class PhaserTest { public static void main(String[] args) { // 三个部分 int parties = 3; // 四个阶段 int 阅读全文
posted @ 2021-06-17 17:24 圣金巫灵 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 所有的线程必须同时到达栅栏位置,才能继续执行。栅栏用于等待其他线程。 CyclicBarrier可以使一定数量的线程反复地在栅栏位置处汇集。当线程到达栅栏位置时将调用await方法,这个方法将阻塞直到所有线程都到达栅栏位置。如果所有线程都到达栅栏位置,那么栅栏将打开,此时所有的线程都将被释放,而栅栏 阅读全文
posted @ 2021-06-17 16:52 圣金巫灵 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 使用: /** * 测试同时启动多个线程 * 这里调用t.start不会立刻启动,会等到CountDownLatch域值为零才启动,所以10个线程全部是await状态。等for循环执行到最后一次后,才同时start * */ public class LockTest { public static 阅读全文
posted @ 2021-06-17 15:07 圣金巫灵 阅读(45) 评论(0) 推荐(0) 编辑
摘要: wait和notify 等待和唤醒 , 需要包围在synchronized里,当获取到同一把锁,notify就能唤醒wait 1. wait和notify使用: 当只调用wait,不调用notify, public class TestWaitNotify { public static void 阅读全文
posted @ 2021-06-17 04:11 圣金巫灵 阅读(48) 评论(0) 推荐(0) 编辑
摘要: Stream API (java.util.stream) 简介: Stream是真正将函数式编程风格引入到java中。 集合讲的是数据,Stream讲的是计算。 stream自己不会储存元素;stream不会改变源对象;stream操作是延时的,会等到需要结果时才执行。 Stream的三个步骤: 阅读全文
posted @ 2021-06-16 00:54 圣金巫灵 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 1. 构造器引用 demo1: public class ConstructorRefTest { public static void main(String[] args) { // lambda Supplier<Person> supplier = ()-> new Person(); // 阅读全文
posted @ 2021-06-15 22:09 圣金巫灵 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 方法方法引用的使用要求:要求接口中的抽象方法的形参列表和返回值类型与 方法引用中的方法的形参列表和返回值类型相同(针对情况1,情况2) 情况1 对象::非静态方法 情况2 类::静态方法 情况3 类::非静态方法 情况1: public class MethodReferenceTest { pub 阅读全文
posted @ 2021-06-15 21:56 圣金巫灵 阅读(93) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 24 下一页