Most visited

Recently visited

Added in API level 24

LongToIntFunction

public interface LongToIntFunction

java.util.function.LongToIntFunction


表示接受长整型参数并生成int值结果的函数。 这是针对long int原始Function

这是一个 functional interface,其功能方法是 applyAsInt(long)

也可以看看:

Summary

Public methods

abstract int applyAsInt(long value)

将此函数应用于给定的参数。

Public methods

applyAsInt

Added in API level 24
int applyAsInt (long value)

将此函数应用于给定的参数。

Parameters
value long: the function argument
Returns
int the function result

Hooray!