java8新特性 - 什么是函数式接口 @FunctionalInt…
2019-08-16 11:56:04来源:博客园 阅读 ()
java8新特性 - 什么是函数式接口 @FunctionalInterface?
什么是函数式接口 @FunctionalInterface
源码定义
/**
* An informative annotation type used to indicate that an interface
* type declaration is intended to be a <i>functional interface</i> as
* defined by the Java Language Specification.
*
* Conceptually, a functional interface has exactly one abstract
* method. Since {@linkplain java.lang.reflect.Method#isDefault()
* default methods} have an implementation, they are not abstract. If
* an interface declares an abstract method overriding one of the
* public methods of {@code java.lang.Object}, that also does
* <em>not</em> count toward the interface's abstract method count
* since any implementation of the interface will have an
* implementation from {@code java.lang.Object} or elsewhere.
*
* <p>Note that instances of functional interfaces can be created with
* lambda expressions, method references, or constructor references.
*
* <p>If a type is annotated with this annotation type, compilers are
* required to generate an error message unless:
*
* <ul>
* <li> The type is an interface type and not an annotation type, enum, or class.
* <li> The annotated type satisfies the requirements of a functional interface.
* </ul>
*
* <p>However, the compiler will treat any interface meeting the
* definition of a functional interface as a functional interface
* regardless of whether or not a {@code FunctionalInterface}
* annotation is present on the interface declaration.
*
* @jls 4.3.2. The Class Object
* @jls 9.8 Functional Interfaces
* @jls 9.4.3 Interface Method Body
* @since 1.8
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface FunctionalInterface {}
翻译
- 如果一个接口只有一个抽象方法,那么该接口就是函数式接口。
- 如果一个接口里面有一个抽象方法,该方法重写了Object的方法,那么不会向接口的抽象方法加1,该接口的抽象方法还是一个,仍然满足函数式接口的定义,那么该接口也会定义为函数式接口。
- 如果我们在某个接口上声明了FunctionalInterface注解,那么编译器就会按照函数式接口的定义来要求该接口,不满足就会报错。
- 如果某一个接口只有一个抽象方法,但是我们并没有在该接口上声明FunctionalInterface注解,那么编译器依旧会将该接口看作函数式接口。
示例
正确定义
- 一般定义
package com.demo.fuctionalface;
@FunctionalInterface
public interface InterfaceDemo {
void say();
}
- 不添加@FunctionalInterface注解编译器也会将此接口当成函数式接口,建议添加
package com.demo.fuctionalface;
public interface InterfaceDemo {
void say();
}
- 重写了Object中的方法,仍然是函数式接口
package com.demo.fuctionalface;
public interface InterfaceDemo {
void say();
@Override
String toString();
}
重点解释一下为什么第三种也是函数式接口:
- 首先 Object类是所有java的父类,所以InterfaceDemo的实现类,直接或者间接的继承Object类,也就是说也继承了Object的toString方法,实现在Object内。只需要实现say()方法即可。子类只需要实现一个抽象方法,符合函数式接口的定义。
错误定义
- 编译器就会报错
package com.demo.fuctionalface;
@FunctionalInterface
public interface InterfaceDemo {
void say();
String MyString();
}
原文链接:https://www.cnblogs.com/karlMa/p/11304441.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Spring Boot 2.3.0 新特性Redis 拓扑动态感应 2020-06-11
- java8 stream的分组功能,具体时候是真的好用 2020-06-10
- 今天来介绍java 各版本的新特性,一篇文章让你了解 2020-06-10
- Spring Boot 2.3 新特性优雅停机详解 2020-06-08
- 原创 Spring Boot 2.3 新特性分层JAR 2020-06-08
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash