Most visited

Recently visited

Added in API level 24

ToIntBiFunction

public interface ToIntBiFunction

java.util.function.ToIntBiFunction<T, U>


表示接受两个参数并生成int值结果的函数。 这是针对int原始BiFunction

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

也可以看看:

Summary

Public methods

abstract int applyAsInt(T t, U u)

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

Public methods

applyAsInt

Added in API level 24
int applyAsInt (T t, 
                U u)

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

Parameters
t T: the first function argument
u U: the second function argument
Returns
int the function result

Hooray!