2019年11月21日
摘要: 1、LocalDate 使用示例 LocalDate localDate = LocalDate.now();// 获取当前年月日 LocalDate localDate1 = LocalDate.of(2019, 9, 10);// 构造指定的年月日 System.out.println("loc 阅读全文
posted @ 2019-11-21 10:16 牛鼻子老赵 阅读(269) 评论(0) 推荐(0) 编辑
  2019年11月19日
摘要: 1、execute 方法位于 java.util.concurrent.Executor 中 void execute(Runnable command); View Code 2、execute 的具体实现 public void execute(Runnable command) { if (c 阅读全文
posted @ 2019-11-19 11:43 牛鼻子老赵 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 1、定义一个接口 Animal package com.zh.vo; public interface Animal { void work(); } 2、定义一个实现类 Bird package com.zh.vo; public class Bird implements Animal { @O 阅读全文
posted @ 2019-11-19 10:14 牛鼻子老赵 阅读(674) 评论(0) 推荐(0) 编辑
  2019年11月18日
摘要: windows下安装kafka manager https://blog.csdn.net/u012374672/article/details/101197023 阅读全文
posted @ 2019-11-18 09:34 牛鼻子老赵 阅读(1560) 评论(0) 推荐(0) 编辑
  2019年11月15日
摘要: 1、使用线程池创建并发环境解析日期 package com.zh.time; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; im 阅读全文
posted @ 2019-11-15 22:55 牛鼻子老赵 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1、容器类的常用方法 // 1、Optional.of(T t): 创建一个Optional实例 不能传null Optional<Employee> op1 = Optional.of(new Employee()); // 2、Optional.empty():创建一个空的Optional实例 阅读全文
posted @ 2019-11-15 22:34 牛鼻子老赵 阅读(537) 评论(0) 推荐(0) 编辑
  2019年11月14日
摘要: 1、reduce(T identity,Binaryoperator)/reduce(Binaryoperator)一可以将流中元素反复结合起来,得到一个值。 List<Employee> employees = Arrays.asList(// new Employee(20, "张三", 500 阅读全文
posted @ 2019-11-14 00:49 牛鼻子老赵 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 查找与匹配 List<Employee> employees = Arrays.asList(// new Employee(20, "张三", 5000.35, Status.FREE), // new Employee(40, "李四", 6500.63, Status.BUSY), // ne 阅读全文
posted @ 2019-11-14 00:45 牛鼻子老赵 阅读(706) 评论(0) 推荐(0) 编辑
摘要: * map—接收Lambda,将元素转换成其他形式或提取信息。接收一个函数作为参数,该函数会被应用到每个元素上,并将其映射成一个新的元素。 * FlatMap—接收一个函数作为参数,将流中的每个值都换成另一个流,然后把所有流连接成一个流 List<Employee> employees = Arra 阅读全文
posted @ 2019-11-14 00:44 牛鼻子老赵 阅读(211) 评论(0) 推荐(0) 编辑
摘要: * filter—接收Lambda,从流中排除某些元素。 * 1imit-截断流,使其元素不超过给定数量。 * skip(n)-跳过元素,返回一个扔掉了前n个元素的流。若流中元素不足n个,则返回一个空流,与1imit(n)互补。 * distinct-筛选,通过流所生成元素的hashCode()和e 阅读全文
posted @ 2019-11-14 00:41 牛鼻子老赵 阅读(247) 评论(0) 推荐(0) 编辑