public interface LongToIntFunction
| java.util.function.LongToIntFunction |
表示接受长整型参数并生成int值结果的函数。 这是针对long int原始Function 。
这是一个 functional interface,其功能方法是 applyAsInt(long) 。
也可以看看:
公共方法(Public methods) |
|
|---|---|
abstract int |
applyAsInt(long value) 将此函数应用于给定的参数。 |
int applyAsInt (long value)
将此函数应用于给定的参数。
| 参数(Parameters) | |
|---|---|
value |
long: the function argument |
| 返回(Returns) | |
|---|---|
int |
the function result |