BiConsumer class

Java8BiConsumer接口:双输入操作无返回值的函数式接口,
本文介绍了Java8中的BiConsumer接口,它是一个接受两个输入参数并返回无结果的操作。它类似于Consumer接口,但支持两个参数。示例展示了如何使用BiConsumer将字符串和整数连接并打印。

The BiConsumer interface is a part of the Java 8's functional interface package (java.util.function). It represents an operation that accepts two input arguments and returns no result.

Here's its definition:

@FunctionalInterface
public interface BiConsumer<T, U> {
    void accept(T t, U u);
}

It has a single method accept that takes two arguments T and U and performs some operation without returning any result. It's similar to the Consumer interface, but it takes two arguments instead of one.

Here's an example of how you can use BiConsumer:

import java.util.function.BiConsumer;

public class BiConsumerExample {
    public static void main(String[] args) {
        BiConsumer<String, Integer> biConsumer = (str, num) -> System.out.println(str + num);
        biConsumer.accept("Number is: ", 10);
    }
}

In this example, the BiConsumer takes a String and an Integer and prints them together.

评论 3
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值