Most visited

Recently visited

Added in API level 24

UnaryOperator

public interface UnaryOperator
implements Function<T, T>

java.util.function.UnaryOperator<T>


表示对单个操作数的操作,该操作数生成与其操作数相同类型的结果。 对于操作数和结果是相同类型的情况,这是Function的专门化。

这是一个 functional interface其官能方法是 apply(Object)

也可以看看:

Summary

Public methods

static <T> UnaryOperator<T> identity()

返回总是返回其输入参数的一元运算符。

Inherited methods

From interface java.util.function.Function

Public methods

identity

Added in API level 24
UnaryOperator<T> identity ()

返回总是返回其输入参数的一元运算符。

Returns
UnaryOperator<T> a unary operator that always returns its input argument

Hooray!