Most visited

Recently visited

Added in API level 24

IntBinaryOperator

public interface IntBinaryOperator

java.util.function.IntBinaryOperator


表示对两个int操作数进行操作并生成int结果。 这是BinaryOperatorint的原始类型int

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

也可以看看:

Summary

Public methods

abstract int applyAsInt(int left, int right)

将此运算符应用于给定的操作数。

Public methods

applyAsInt

Added in API level 24
int applyAsInt (int left, 
                int right)

将此运算符应用于给定的操作数。

Parameters
left int: the first operand
right int: the second operand
Returns
int the operator result

Hooray!