Java 8 Lambda 表达式和 Stream 操作

Function shapes have a natural arity based on how they are most commonly used. The basic shapes can be modified by an arity prefix to indicate a different arity, such as BiFunction (binary function from T and U to R).

类名::方法名,相当于对这个方法闭包的引用,类似js中的一个function。比如:

public static void main(String[] args) {

Consumer printStrConsumer = DoubleColon::printStr;

printStrConsumer.accept(“printStrConsumer”);

Consumer toUpperConsumer = DoubleColon::toUpper;

toUpperConsumer.accept(new DoubleColon());

BiConsumer<DoubleColon,String> toLowerConsumer = DoubleColon::toLower;

toLowerConsumer.accept(new DoubleColon(),“toLowerConsumer”);

BiFunction<DoubleColon,String,Integer> toIntFunction = DoubleColon::toInt;

int i = toIntFunction.apply(new DoubleColon(),“toInt”);

}

static class DoubleColon {

public static void printStr(String str) {

System.out.println("printStr : " + str);

}

public void toUpper(){

System.out.println("toUpper : " + this.toString());

}

public void toLower(String str){

System.out.println("toLower : " + str);

}

public int toInt(String str){

System.out.println("toInt : " + str);

return 1;

}

}

复制代码

用::提取的函数,最主要的区别在于静态与非静态方法,非静态方法比静态方法多一个参数,就是被调用的实例。

// 使用双冒号::来构造非静态函数引用

String content = “Hello JDK8”;

// public String substring(int beginIndex)

// 写法一: 对象::非静态方法

Function<Integer, String> func = content::substring;

String result = func.apply(1);

System.out.println(result);

// 写法二:

IntFunction intFunc = content::substring;

result = intFunc.apply(1);

System.out.println(result);

// 写法三: String::非静态方法

BiFunction<String,Integer,String> lala = String::substring;

String s = lala.apply(content, 1);

System.out.println(s);

// public String toUpperCase()

// 写法一: 函数引用也是一种函数式接口,所以也可以将函数引用作为方法的参数

Function<String, String> func2 = String::toUpperCase;

result = func2.apply(“lalala”);

System.out.println(result);

// 写法二: 可以改写成Supplier: 入参void, 返回值String

Supplier supplier = “alalal”::toUpperCase;

result = supplier.get();

System.out.println(result);

复制代码

数组引用

// 传统Lambda实现

IntFunction<int[]> function = (i) -> new int[i];

int[] apply = function.apply(5);

System.out.println(apply.length); // 5

// 数组类型引用实现

function = int[]::new;

apply = function.apply(10);

System.out.println(apply.length); // 10

复制代码

Optional的用法


c static void main(String[] args) {

// Optional类已经成为Java 8类库的一部分,在Guava中早就有了,可能Oracle是直接拿来使用了

// Optional用来解决空指针异常,使代码更加严谨,防止因为空指针NullPointerException对代码造成影响

String msg = “hello”;

Optional optional = Optional.of(msg);

// 判断是否有值,不为空

boolean present = optional.isPresent();

// 如果有值,则返回值,如果等于空则抛异常

String value = optional.get();

// 如果为空,返回else指定的值

String hi = optional.orElse(“hi”);

// 如果值不为空,就执行Lambda表达式

optional.ifPresent(opt -> System.out.println(opt));

复制代码

Stream的一些操作


有些Stream可以转成集合,比如前面提到toList,生成了java.util.List 类的实例。当然了,还有还有toSet和toCollection,分别生成 Set和Collection 类的实例。

final List list = Arrays.asList(“jack”, “mary”, “lucy”);

// 过滤 + 输出

System.out.println("过滤 + 输出: ");

Stream stream = list.stream();

stream.filter(item -> !item.equals(“zhangsan”))

.filter(item -> !item.equals(“wangwu”))

.forEach(item -> System.out.println(item));

// 限制为2

System.out.println("limit(2): ");

list.stream().limit(2).forEach(System.out::println);

// 排序

System.out.println("排序: ");

list.stream().sorted((o1, o2) -> o1.compareTo(o2)).forEach(System.out::println);

// 取出最大值

System.out.println("max: ");

String result = list.stream().max((o1, o2) -> o1.compareTo(o2)).orElse(“error”);

System.out.println(result);

// toList

System.out.println("toList: ");

List collectList = Stream.of(1, 2, 3, 4)

.collect(Collectors.toList());

System.out.println("collectList: " + collectList);

// 打印结果

// collectList: [1, 2, 3, 4]

// toSet

System.out.println("toSet: ");

Set collectSet = Stream.of(1, 2, 3, 4)

.collect(Collectors.toSet());

System.out.println("collectSet: " + collectSet);

// 打印结果

// collectSet: [1, 2, 3, 4]

复制代码

list 转 map(通过 stream)

List list = new ArrayList<>();

list.add(new Person(1, “mary”));

list.add(new Person(2, “lucy”));

Map<Integer, Person> map = list.stream().collect(Collectors.toMap(Person::getId, Function.identity()));

System.out.println(map);

// 输出: {1=Main3 P e r s o n @ 42 f 30 e 0 a , 2 = M a i n 3 Person@42f30e0a, 2=Main3 Person@42f30e0a,2=Main3Person@24273305}

Map<Integer, String> map2 = list.stream().collect(Collectors.toMap(Person::getId, Person::getName));

System.out.println(map2);

// 输出: {1=mary, 2=lucy}

复制代码

最后

按照上面的过程,4个月的时间刚刚好。当然Java的体系是很庞大的,还有很多更高级的技能需要掌握,但不要着急,这些完全可以放到以后工作中边用别学。

学习编程就是一个由混沌到有序的过程,所以你在学习过程中,如果一时碰到理解不了的知识点,大可不必沮丧,更不要气馁,这都是正常的不能再正常的事情了,不过是“人同此心,心同此理”的暂时而已。

道路是曲折的,前途是光明的!”

相关阅读docs.qq.com/doc/DSmxTbFJ1cmN1R2dB
, 2=lucy}

复制代码

最后

按照上面的过程,4个月的时间刚刚好。当然Java的体系是很庞大的,还有很多更高级的技能需要掌握,但不要着急,这些完全可以放到以后工作中边用别学。

学习编程就是一个由混沌到有序的过程,所以你在学习过程中,如果一时碰到理解不了的知识点,大可不必沮丧,更不要气馁,这都是正常的不能再正常的事情了,不过是“人同此心,心同此理”的暂时而已。

道路是曲折的,前途是光明的!”

[外链图片转存中…(img-8sqrUMAk-1724648224066)]

[外链图片转存中…(img-QdGB7Dlm-1724648224067)]

相关阅读docs.qq.com/doc/DSmxTbFJ1cmN1R2dB

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值