天天看点

Java一元_Java语言中关于一元运算符的详解

这篇文章主要介绍了Java语言中的一元运算符实例解析,需要的朋友可以参考下。

一元运算符,也叫单项算符,一目运算符,一元算符 ,英文名字:UnaryOperator。

描述:接受一个参数为类型T,返回值类型也为T。

源码:

public interface UnaryOperator extends Function { static UnaryOperator 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 }

总结