您好,登錄后才能下訂單哦!
小編給大家分享一下java方法如何引用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、說明
方法引用可以看作是Lambda表達式的深層表達。換句話說,方法引用是Lambda表達式,也就是函數(shù)接口的例子,通過方法名稱指向方法。
2、使用場景
當(dāng)要傳遞給 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<String> 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<String> 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<Integer> com1 = (t1, t2) -> Integer.compare(t1, t2); System.out.println(com1.compare(32, 45)); System.out.println("===================="); //使用方法引用 Comparator<Integer> 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<Double, Long> func = new Function<Double, Long>() { @Override public Long apply(Double aDouble) { return Math.round(aDouble); } }; System.out.println(func.apply(10.5)); System.out.println("===================="); //使用Lambda表達式 Function<Double, Long> func1 = d -> Math.round(d); System.out.println(func1.apply(12.3)); System.out.println("===================="); //使用方法引用 Function<Double, Long> 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<String> com1 = (s1, s2) -> s1.compareTo(s2); System.out.println(com1.compare("abd", "aba")); System.out.println("===================="); //使用方法引用 Comparator<String> 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<String, String> pre1 = (s1, s2) -> s1.equals(s2); System.out.println(pre1.test("abc", "abc")); System.out.println("===================="); //使用方法引用 BiPredicate<String, String> 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<Employee, String> func1 =e->e.getName(); System.out.println(func1.apply(employee)); System.out.println("===================="); //使用方法引用 Function<Employee,String>func2 = Employee::getName; System.out.println(func2.apply(employee)); } }
Java的基本數(shù)據(jù)類型分為:1、整數(shù)類型,用來表示整數(shù)的數(shù)據(jù)類型。2、浮點類型,用來表示小數(shù)的數(shù)據(jù)類型。3、字符類型,字符類型的關(guān)鍵字是“char”。4、布爾類型,是表示邏輯值的基本數(shù)據(jù)類型。
以上是“java方法如何引用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。