• Java8 stream基础


    List<Integer> list = new ArrayList<Integer>();
    list.add(2);
    list.add(4);
    list.add(0);
    list.add(100);
    System.out.println("----------------stream---------------------");
    list.stream().filter(e -> e > 4).forEach(System.out::println);
    Stream<Integer> list1 = list.stream().filter(e -> e > 0);
    Iterator<Integer> iter = list1.iterator();
    while (iter.hasNext()) {
    System.out.println(iter.next());
    }
    System.out.println("--------------filter 条件查询--------------------");
    list = list.stream().filter(e -> e > 2).collect(Collectors.toList());
    list.forEach(System.out::println);
    List<Student> studentlist=new ArrayList<Student>();
    studentlist.add(new Student("A",12));
    studentlist.add(new Student("B",5));
    studentlist.add(new Student("C",16));
    studentlist.add(new Student("D",2));
    System.out.println("取出集合中对象指定属性");
    studentlist.stream().map(Student::getName).forEach(System.out::println);
    System.out.println("-----------------------------按对象属性正序---------------------------------------------");
    studentlist.stream().sorted(Comparator.comparing(Student::getAge)).forEach(System.out::println);
    System.out.println("-----------------------------按对象属性倒序---------------------------------------------");
    studentlist.stream().sorted(Comparator.comparing(Student::getAge).reversed()).forEach(System.out::println);
    studentlist=studentlist.stream().sorted(Comparator.comparing(Student::getAge).reversed()).collect(Collectors.toList());
    System.out.println("----------------------------stream 转化为集合输出----------------------------------------------");
    studentlist.forEach(System.out::print);

    class Student{
    private String name;
    private Integer age;
    public String getName() {
    return name;
    }
    public void setName(String name) {
    this.name = name;
    }
    public Integer getAge() {
    return age;
    }
    public void setAge(Integer age) {
    this.age = age;
    }
    public Student(String name, Integer age) {
    super();
    this.name = name;
    this.age = age;
    }
    public Student() {
    super();
    }
    @Override
    public String toString() {
    return "Student [name=" + name + ", age=" + age + "]";
    }


    }

  • 相关阅读:
    鲁迅说过搜索引擎
    下载github上文件与release的安装包-解决s3.amazonaws.com问题
    作业九----DFA最小化
    作业八----非确定的自动机NFA确定化为DFA
    作业七----正规式到正规文法与自动机
    作业六----正规文法与正规式
    第五次作业----词法分析程序的设计与实现
    第四次作业
    作业三
    2.文法和语言
  • 原文地址:https://www.cnblogs.com/coderdxj/p/9020006.html
Copyright © 2020-2023  润新知