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 |