P1
- 参数一类型P2
- 参数二类型P3
- 参数三类型@FunctionalInterface public interface SerConsumer3<P1,P2,P3> extends Serializable
Modifier and Type | Method and Description |
---|---|
default void |
accept(P1 p1,
P2 p2,
P3 p3)
接收参数方法
|
void |
accepting(P1 p1,
P2 p2,
P3 p3)
接收参数方法
|
default SerConsumer3<P1,P2,P3> |
andThen(SerConsumer3<P1,P2,P3> after)
Returns a composed
SerConsumer3 that performs, in sequence, this
operation followed by the after operation. |
default SerConsumer3<P1,P2,P3> andThen(SerConsumer3<P1,P2,P3> after)
SerConsumer3
that performs, in sequence, this
operation followed by the after
operation. If performing either
operation throws an exception, it is relayed to the caller of the
composed operation. If performing this operation throws an exception,
the after
operation will not be performed.after
- the operation to perform after this operationSerConsumer3
that performs in sequence this
operation followed by the after
operationNullPointerException
- if after
is nullCopyright © 2025. All rights reserved.