首頁  >  文章  >  Java  >  Java語言中關於一元運算子的詳解

Java語言中關於一元運算子的詳解

黄舟
黄舟原創
2017-09-21 10:43:482552瀏覽

這篇文章主要介紹了Java語言中的一元運算子實例解析,需要的朋友可以參考下。

一元運算子,也叫單項算符,一目運算符,一元算符 ,英文名字:UnaryOperator。

描述:接受一個參數為型別T,傳回值型別也為T。

原始碼:


public interface UnaryOperator<T> extends Function<T, T> {  /**
   * Returns a unary operator that always returns its input argument.
   *
   * @param <T> the type of the input and output of the operator
   * @return a unary operator that always returns its input argument
   */  static <T> UnaryOperator<T> identity() {
    return t -> t;
  }
}

測試程式碼:


@Test
  public void test(){
    super.print(UnaryOperator.identity().apply(1));//输出1    
    super.print(UnaryOperator.identity().apply(false));//输出false    
    super.print(UnaryOperator.identity().apply("string"));//输出string  }

##總結

以上是Java語言中關於一元運算子的詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn