1. <ul id="0c1fb"></ul>

      <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
      <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区

      RELATEED CONSULTING
      相關(guān)咨詢
      選擇下列產(chǎn)品馬上在線溝通
      服務(wù)時間:8:30-17:00
      你可能遇到了下面的問題
      關(guān)閉右側(cè)工具欄

      新聞中心

      這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
      java方法引用怎么使用

      這篇“java方法引用怎么使用”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“java方法引用怎么使用”文章吧。

      成都創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站制作、成都網(wǎng)站設(shè)計與策劃設(shè)計,托克遜網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十多年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:托克遜等地區(qū)。托克遜做網(wǎng)站價格咨詢:028-86922220

      1、說明

      方法引用可以看作是Lambda表達式的深層表達。換句話說,方法引用是Lambda表達式,也就是函數(shù)接口的例子,通過方法名稱指向方法。

      2、使用場景

      當要傳遞給 Lambda 體的操作,已經(jīng)實現(xiàn)的方法了,可以使用方法引用

      3、格式

      類(或?qū)ο? :: 方法名

      4、實例

      public class MethodRefTest {
      
          // 情況一:對象 :: 實例方法
          //Consumer中的void accept(T t)
          //PrintStream中的void println(T t)
          @Test
          public void test1() {
              //使用Lambda表達
              Consumer con1 = str -> System.out.println(str);
              con1.accept("中國");
              System.out.println("====================");
      
              //使用方法引用
              PrintStream ps = System.out;
              Consumer con2 = ps::println;
              con2.accept("China");
      
          }
      
          //Supplier中的T get()
          //Employee中的String getName()
          @Test
          public void test2() {
              //使用Lambda表達
              Employee emp = new Employee(1001, "Bruce", 34, 600);
              Supplier sup1 = () -> emp.getName();
              System.out.println(sup1.get());
              System.out.println("====================");
      
              //使用方法引用
              Supplier sup2 = emp::getName;
              System.out.println(sup2.get());
      
      
          }
      
          // 情況二:類 :: 靜態(tài)方法
          //Comparator中的int compare(T t1,T t2)
          //Integer中的int compare(T t1,T t2)
          @Test
          public void test3() {
              //使用Lambda表達
              Comparator com1 = (t1, t2) -> Integer.compare(t1, t2);
              System.out.println(com1.compare(32, 45));
              System.out.println("====================");
      
              //使用方法引用
              Comparator com2 = Integer::compareTo;
              System.out.println(com2.compare(43, 34));
          }
      
          //Function中的R apply(T t)
          //Math中的Long round(Double d)
          @Test
          public void test4() {
              //使用匿名內(nèi)部類
              Function func = new Function() {
                  @Override
                  public Long apply(Double aDouble) {
                      return Math.round(aDouble);
                  }
              };
              System.out.println(func.apply(10.5));
              System.out.println("====================");
      
              //使用Lambda表達式
              Function func1 = d -> Math.round(d);
              System.out.println(func1.apply(12.3));
              System.out.println("====================");
      
              //使用方法引用
              Function func2 = Math::round;
              System.out.println(func2.apply(12.6));
      
      
          }
      
          // 情況三:類 :: 實例方法
          // Comparator中的int comapre(T t1,T t2)
          // String中的int t1.compareTo(t2)
          @Test
          public void test5() {
              //使用Lambda表達式
              Comparator com1 = (s1, s2) -> s1.compareTo(s2);
              System.out.println(com1.compare("abd", "aba"));
              System.out.println("====================");
      
              //使用方法引用
              Comparator com2 = String::compareTo;
              System.out.println(com2.compare("abd", "abc"));
          }
      
          //BiPredicate中的boolean test(T t1, T t2);
          //String中的boolean t1.equals(t2)
          @Test
          public void test6() {
              //使用Lambda表達式
              BiPredicate pre1 = (s1, s2) -> s1.equals(s2);
              System.out.println(pre1.test("abc", "abc"));
              System.out.println("====================");
      
              //使用方法引用
              BiPredicate pre2 = String::equals;
              System.out.println(pre2.test("abc", "abd"));
      
          }
      
          // Function中的R apply(T t)
          // Employee中的String getName();
          @Test
          public void test7() {
              //使用Lambda表達式
              Employee employee = new Employee(1001, "Tom", 45, 10000);
      
              Function func1 =e->e.getName();
              System.out.println(func1.apply(employee));
              System.out.println("====================");
      
              //使用方法引用
              Functionfunc2 = Employee::getName;
              System.out.println(func2.apply(employee));
          }
      }

      以上就是關(guān)于“java方法引用怎么使用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


      當前題目:java方法引用怎么使用
      瀏覽路徑:http://ef60e0e.cn/article/jjpdsp.html
      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区
      1. <ul id="0c1fb"></ul>

        <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
        <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

        大埔区| 麻栗坡县| 德庆县| 日喀则市| 芮城县| 原平市| 曲阜市| 习水县| 萝北县| 阜平县| 砚山县| 筠连县| 若羌县| 班戈县| 广宁县| 兴隆县| 海伦市| 定陶县| 灵山县| 乐山市| 慈溪市| 凤阳县| 闸北区| 潼关县| 泸定县| 吉木萨尔县| 康平县| 肇源县| 渭南市| 崇文区| 平凉市| 共和县| 库车县| 施秉县| 乡宁县| 萨嘎县| 亳州市| 抚顺县| 金山区| 花垣县| 手机|