当前位置:   article > 正文

Stream流中map方法_stream流中的map方法

stream流中的map方法

一、Stream流中map方法

1、代码举例

    public void test() throws ParseException {
        List<People> peopleList = new ArrayList<People>();
        People people1 = new People("张三", 18);
        People people2 = new People("王五", 19);
        peopleList.add(people1);
        peopleList.add(people2);

        Stream<String> peopleStream = peopleList.stream().map(
                //使用匿名接口Function重写抽象方法apply,参数一为传入类型,参数二为传出类型
                new Function<People, String>() {
                    @Override
                    public String apply(People people) {
                        people.setName("姓名:" + people.getName());
                        return people.getName();
                    }
                }
        );
        peopleStream.forEach(s -> System.out.println(s));
        System.out.println("========================================================");

        Stream<People> peopleStream2 = peopleList.stream().map(
                //lambda
                s->addAge(s)
        );
        peopleStream2.forEach(s -> System.out.println(s));
    }

    public People addAge(People people){
        people.setAge(people.getAge()+1);
        return people;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

2、实体类

public class People {
    private String name;
    private int age;

    public People(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public People() {
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public String toString() {
        return "People{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37

3、效果

在这里插入图片描述

二、其他

Stream中of方法传入可变参数
Stream中map元素类型转化方法

1、stream流获取某一个字段集合

List<String> names = personList.stream()
                            .map(person -> person.getName())
                            .collect(Collectors.toList());
  • 1
  • 2
  • 3
  • 坚持并不是一时的决心,而是每一天不断行动的力量。
  • 不管过去有多少失败,未来依然是胜利的希望之地。
  • 当你放下过去的包袱,才能迈向更美好的未来。
  • 梦想不会自动成真,需要我们用行动和努力去实现。
  • 如果你相信自己,无论多困难的道路都能走出光明的终点。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/352323
推荐阅读
相关标签
  

闽ICP备14008679号