public interface IntBinaryOperator
java.util.function.IntBinaryOperator |
表示对两个int
操作数进行操作并生成int
结果。 这是BinaryOperator
的int
的原始类型int
。
这是一个 functional interface,其功能方法是 applyAsInt(int, int)
。
也可以看看:
Public methods |
|
---|---|
abstract int |
applyAsInt(int left, int right) 将此运算符应用于给定的操作数。 |
int applyAsInt (int left, int right)
将此运算符应用于给定的操作数。
Parameters | |
---|---|
left |
int : the first operand |
right |
int : the second operand |
Returns | |
---|---|
int |
the operator result |