消费两个参数
Interface BiConsumer<T,U>
T - 第一个输入的参数类型
U - 第二个输入参数的类型
void accept(T t,U u)
Parameters:
t - the first input argument
u - the second input argument
参考:
https://docs.oracle.com/javase/8/docs/api/java/util/function/BiConsumer.html
消费两个参数
Interface BiConsumer<T,U>
T - 第一个输入的参数类型
U - 第二个输入参数的类型
void accept(T t,U u)
Parameters:
t - the first input argument
u - the second input argument
参考:
https://docs.oracle.com/javase/8/docs/api/java/util/function/BiConsumer.html