上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 30 下一页
摘要: https://blog.csdn.net/y_k_y/article/details/84633001 重点提一下anyMatch allMatch:接收一个 Predicate 函数,当流中每个元素都符合该断言时才返回true,否则返回false noneMatch:接收一个 Predicate 阅读全文
posted @ 2021-01-22 20:37 弓呆的胖次 阅读(449) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_29753285/article/details/93992594 下载JDK的时候,10k每秒的速度简直难以忍受,下面列出了一些解决方法 可用的加速方法 将下载链接去掉https由于下载时默认是https,所以会慢一些,使用http之后虽然还是慢, 阅读全文
posted @ 2021-01-09 21:03 弓呆的胖次 阅读(1031) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/pretty-sunshine/p/9950541.html 1、Ctrl+N按名字搜索类 相当于eclipse的ctrl+shift+R,输入类名可以定位到这个类文件,就像idea在其它的搜索部分的表现一样,搜索类名也能对你所要搜索的内容多个部分进行 阅读全文
posted @ 2021-01-09 19:56 弓呆的胖次 阅读(288) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/67d3637493c7 阅读全文
posted @ 2021-01-05 10:55 弓呆的胖次 阅读(68) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zjhred/article/details/84976734 阅读全文
posted @ 2020-12-30 18:41 弓呆的胖次 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 方法注释 /** * Returns an immutable list containing only the specified object. * The returned list is serializable. * * @param <T> the class of the object 阅读全文
posted @ 2020-12-30 18:38 弓呆的胖次 阅读(166) 评论(0) 推荐(0) 编辑
摘要: package cn.how2j.springcloud; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.ThreadLocalRandom; import java.util.concurr 阅读全文
posted @ 2020-12-29 21:35 弓呆的胖次 阅读(64) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/f030aa5d7a28 阅读全文
posted @ 2020-12-29 15:46 弓呆的胖次 阅读(52) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jpfss/p/11143041.html 1.概述 ExecutorService是JDK提供的框架,它简化了异步模式下的任务执行。一般来说,ExecutorService会自动提供一个线程池和API,用于为其分配任务。 2.实例化ExecutorS 阅读全文
posted @ 2020-12-29 14:36 弓呆的胖次 阅读(163) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/alimayun/p/10934202.html 从多个任务的角度来看,任务是可以串行执行的,也可以是并发执行的。从单个任务的角度来看,任务的执行方式可以是同步的,也可以是异步的。 Runnable、Callable、FutureTask 1、Runn 阅读全文
posted @ 2020-12-29 13:15 弓呆的胖次 阅读(219) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 30 下一页