91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java8中:: 用法示例(JDK8雙冒號用法)

發布時間:2020-08-20 00:28:16 來源:腳本之家 閱讀:185 作者:A點點圈圈A 欄目:編程語言

JDK8中有雙冒號的用法,就是把方法當做參數傳到stream內部,使stream的每個元素都傳入到該方法里面執行一下。

代碼其實很簡單:

以前的代碼一般是如此的:

public class AcceptMethod {
 
 public static void printValur(String str){
 System.out.println("print value : "+str);
 }
 
 public static void main(String[] args) {
 List al = Arrays.asList("a","b","c","d");
 for (String a: al) {
  AcceptMethod.printValur(a);
 }
 //下面的for each循環和上面的循環是等價的 
 al.forEach(x->{
  AcceptMethod.printValur(x);
 });
 }
}

現在JDK雙冒號是:

public class MyTest {
 public static void printValur(String str){
 System.out.println("print value : "+str);
 }
 
 public static void main(String[] args) {
 List al = Arrays.asList("a", "b", "c", "d");
 al.forEach(AcceptMethod::printValur);
 //下面的方法和上面等價的
 Consumer methodParam = AcceptMethod::printValur; //方法參數
 al.forEach(x -> methodParam.accept(x));//方法執行accept
 }
}

上面的所有方法執行玩的結果都是如下:

print value : a
print value : b
print value : c
print value : d

在JDK8中,接口Iterable 8中默認實現了forEach方法,調用了 JDK8中增加的接口Consumer內的accept方法,執行傳入的方法參數。

JDK源碼如下:

/**
 * Performs the given action for each element of the {@code Iterable}
 * until all elements have been processed or the action throws an
 * exception. Unless otherwise specified by the implementing class,
 * actions are performed in the order of iteration (if an iteration order
 * is specified). Exceptions thrown by the action are relayed to the
 * caller.
 *
 * @implSpec
 * <p>The default implementation behaves as if:
 * <pre>{@code
 * for (T t : this)
 *  action.accept(t);
 * }</pre>
 *
 * @param action The action to be performed for each element
 * @throws NullPointerException if the specified action is null
 * @since 1.8
 */
 default void forEach(Consumer<? super T> action) {
 Objects.requireNonNull(action);
 for (T t : this) {
  action.accept(t);
 }
 }

另外補充一下,JDK8改動的,在接口里面可以有默認實現,就是在接口前加上default,實現這個接口的函數對于默認實現的方法可以不用再實現了。類似的還有static方法。現在這種接口除了上面提到的,還有BiConsumer,BiFunction,BinaryOperation等,在java.util.function包下的接口,大多數都有,后綴為Supplier的接口沒有和別的少數接口。

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

田阳县| 历史| 广平县| 全南县| 休宁县| 北海市| 和田县| 克拉玛依市| 昌江| 肇庆市| 朝阳区| 卓资县| 集贤县| 丽江市| 无锡市| 盐津县| 淄博市| 澳门| 从化市| 噶尔县| 宝丰县| 千阳县| 平定县| 竹山县| 长岛县| 巢湖市| 益阳市| 巫溪县| 秦安县| 临夏县| 大邑县| 武汉市| 邵阳县| 林州市| 密云县| 普宁市| 确山县| 英超| 青岛市| 马边| 巴林左旗|