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