首页 > TAG信息列表 > GreetingService

@FunctionalInterface 函数式接口

作用:在编译过程中,校验该接口只有一个抽象方法; 解释:除了唯一的抽象方法外,可以包含已经有实现的方法(包括静态方法); 使用:可以使用Lambda表达式来表示该接口的一个实现: @FunctionalInterface interface GreetingService { void sayMessage(String message); } G

JAVA 新特性

一、JAVA8新特性lambda表达式  ()->{ return 5;} 二、方法引用,将方法作为参数传入:   foreach(System.out::printLn) 三、函数式接口  @FunctionalInterface interface GreetingService { void sayMessage(String message); } GreetingService greetService1 = message -

JAVA8新特性之——函数式接口

JAVA8新特性之——函数式接口 一:什么是函数式接口? 1.一个接口里面只有一个抽象方法 2.用@FunctionalInterface注解标识 (没有也不报错就好像重写的注解@Override)。 如定义了一个函数式接口如下: @FunctionalInterface interface GreetingService { void sayMessage(St

2.Dubbo初探

新建Maven项目,redis充当注册中心 1.pom.xml <!--dubbo --> <dependency> <groupId>com.alibaba</groupId> <artifactId>dubbo</artifactId> <version>2.5.8</version> </dependency> <!--redis --> <dependenc