大家好,又见面了,我是你们的朋友全栈君。
描述:一元运算,接受一个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
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/128794.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...