首頁 > Java > java教程 > Java語言中關於一元運算子的詳解

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

黄舟
發布: 2017-09-21 10:43:48
原創
2608 人瀏覽過

這篇文章主要介紹了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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板