04-03.eri-test Java 8-功能接口

在本系列的上一篇文章中,我们讨论了什么是lambda表达式以及如何编写lambda表达式。 在本文中,我们将讨论如何执行lambda表达式。 正如我所说,在上一篇文章的末尾,我们可以使用Java 8的新功能来执行lambda表达式,功能界面

So what is 功能界面?

The interface containing the single abstract 方法(SAM) are called Functional 接口。 Some of the Functional 接口 we may know are:

Interface方法
可运行跑()
可召回呼叫()
可比相比于()
动作监听器actionPerformed()

在1.8版中,Java引入了一个注释@FunctionalInterface将接口明确指定为功能接口。 但是注释是可选的。 但是,建议编写注释。 它有助于防止任何其他抽象方法。 如果带有批注的接口包含多个抽象方法,那么我们将得到一个编译时错误,提示:

error: Unexpected @FunctionalInterface annotation@FunctionalInterface^  CustomInterface is not a functional interface    multiple non-overriding abstract methods found in interface CustomInterface

注意:功能接口可以具有多个默认和静态方法。

范例1:

@FunctionalInterfaceinterface A {
    void m1();
} 

@FunctionalInterface
interface B extends A {
}

@FunctionalInterface
interface C extends A {
    void m1();
}

@FunctionalInterface
interface D extends A {
    void m2();
}

在上面的示例中,接口D定义无效,因为它包含两个方法:m1()[从接口A扩展]和m2()。

在下一部分中,我将介绍如何将lambda表达式与功能接口一起使用。

from: https://dev.to//csangharsha/java-8-functional-interface-2cm9

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值