zoukankan      html  css  js  c++  java
  • Java8 :: 用法 (JDK8 双冒号用法)

    jdk8中使用了::的用法。就是把方法当做参数传到stream内部,使stream的每个元素都传入到该方法里面执行一下,双冒号运算就是Java中的[方法引用],[方法引用]的格式是

      类名::方法名 

    注意此处没有()。

    案例:

    表达式:

    person -> person.getAge();

    使用双冒号:

    Person::getAge

    表达式:

    new HashMap<>()

    使用双冒号:

    HsahMap :: new

    部分代码案例

    未使用双冒号

    public class MyTest {
        public static void main(String[] args) {
            List<String> a1 = Arrays.asList("a", "b", "c");
    
            for (String a : a1) {
                printValur(a);
            };
    
            a1.forEach(x -> MyTest.printValur(x));
    
    
        }
    
        public static void printValur(String str) {
            System.out.println("print value : " + str);
        }
    }

    使用后

         a1.forEach(MyTest::printValur);
    
            Consumer<String> consumer = MyTest::printValur;
            a1.forEach(x -> consumer.accept(x));

    未使用双冒号:

         List<String> list = a1.stream().map(x -> x.toUpperCase()).collect(Collectors.toList());
         System.out.println(list.toString());

    使用双冒号:

            ArrayList<String> collect = a1.stream().map(String::toUpperCase).collect(Collectors.toCollection(ArrayList::new));
            System.out.println(collect.toString());
  • 相关阅读:
    b站尚硅谷MySQL笔记(婷姐初级,周阳高级)
    word--公式添加编号
    excel--长数字显示问题
    R语言--蒙特卡洛计算定积分
    数学
    数学
    Computer Science
    Computer Science
    Computer Science
    元学习
  • 原文地址:https://www.cnblogs.com/thiaoqueen/p/11458836.html
Copyright © 2011-2022 走看看