上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 40 下一页
摘要: 方法引用的基本介绍 首先我们先来定义一个打印的接口 public class PrintableImpl { public static void PrintString(Printable printable){ printable.pring("HelloWorld"); } public st 阅读全文
posted @ 2022-07-25 08:41 一位程序袁 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 方法引用_通过类名引用静态的成员方法 定义一个抽象方法,传递一个整数,对整数进行绝对计算进行返回 案例: //定义一个函数式的接口public interface Printable { int sum(int number);} public class PrintableImpl { publi 阅读全文
posted @ 2022-07-24 21:37 一位程序袁 阅读(27) 评论(0) 推荐(0) 编辑
摘要: Stream流中常用的方法_limit limit可以对流进行截取,只截取前n个 参数是一个Long型,如果参数长度大于截取的长度 就进行截取,否者不进行操作 案例: public static void main(String[] args) { String[] arr={"aa","aaaa" 阅读全文
posted @ 2022-07-24 10:15 一位程序袁 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 流中的常用方法_concat 这个方法能把两个流合并成一个流 public static void main(String[] args) { Stream<String> aa = Stream.of("大傻", "张山", "ccc"); Stream<String> bb = Stream.o 阅读全文
posted @ 2022-07-24 10:14 一位程序袁 阅读(43) 评论(0) 推荐(0) 编辑
摘要: Stream流中的常用方法_map 如果需要将流中的元素映射到另一个流中,可以使用map方法 案例: public class map1 { public static void main(String[] args) { Stream<String> a = Stream.of("1", "2", 阅读全文
posted @ 2022-07-24 09:32 一位程序袁 阅读(262) 评论(0) 推荐(0) 编辑
摘要: Stream中的常用方法_filter filter方法的参数Peredicate是一个函数式接口,所以可以传递Lambda表达式,对数据进行过滤 Predicate中的抽象方法: boolean test(T t) 案例: public static void main(String[] args 阅读全文
posted @ 2022-07-24 09:21 一位程序袁 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 获取流的两种方式 获取流的非常简单,有一下这几种方式: 所有的Colleection集合都可以通过Stream默认方法获取流 Stream接口中的of可以获取数组对应的流 参数是一个可变参数,那么我们就可以传递一个数组 案例: public class Changyongfas { public s 阅读全文
posted @ 2022-07-24 09:11 一位程序袁 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 流的思想概述 图解: Stream(流)是一个来自数据源的元素队列·元素是特定类型的对象,形成一个队列。Java中的Stream并不会存储元素,而是按需计算。数据源流的来源。可以是集合,数组等。 阅读全文
posted @ 2022-07-23 17:16 一位程序袁 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 使用传统的方法遍历集合,对集合中的数据进行过滤 我们使用传统的方法和Stream流的方法来比较一下: public class List1 { public static void main(String[] args) { ArrayList<String> list = new ArrayLis 阅读全文
posted @ 2022-07-23 17:10 一位程序袁 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 常用函数式接口_andThen Function接口中的默认方法andThen:用来进行组合操作 需求: 把String类型的123转话为Integer类型,把转化后的结果加10 把增加之后Integar类型的数据,转化为String类型 分析:第一次是把string类型转换为了Integer类型所 阅读全文
posted @ 2022-07-23 16:39 一位程序袁 阅读(130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 40 下一页