Java8 lambda支持

函数式编程

说lambdas前,先理解下什么是函数式编程,若是你是个纯Java程序员,并且以前一直是没有使用过Java8,可能尚未使用过这种编程方式。用一句最直接的话解释就是能够把函数当作参数传入。举个下面这样的列子java

int c1(int x,int y){
    return x+y;
}

void func(
    c1(int x,int y), // 参数一,这里至关因而把c1这个函数直接传进来
    int c  // 参数二
){ // do something ...}

上面的列子只是举个简单例子,Java中并无这样的语法,下面用Java8的支持的lambdas语法演示下:程序员

// 在Java8中使用lambdas方式,能够直接这样写:
void func((x,y)->{x+y},int y) {// do something...}

// (x,y)->x+y 这样写以前必须有一个这样对应的接口是这样定义的,以下
@FunctionalInterface   // 这个注解不是必须的,只是为了代表这个接口是用于支持Lamdas函数
public interface Func{
    int c1(int x,int y); 
}

// 在举个使用异步线程的例子
new Thread(()->{// do something}).start()
// 这里Runnable对象,就能够用lambdas表达式:()->{do something}
// 当代码只有一行的时候,能够不须要{}

至于编译器是怎样解释lambdas的语法的,咱们先能够大胆猜想是把它编译成一个匿名的对象,是否是能够这样解释且解释的通,下面具体介绍下express

lambda是什么

“Lambda 表达式”(lambda expression)是一个匿名函数,Lambda表达式基于数学中的λ演算得名,直接对应于其中的lambda抽象(lambda abstraction),是一个匿名函数,即没有函数名的函数。Lambda表达式能够表示闭包(注意和数学传统意义上的不一样)。编程

能够理解为lamdba就是一种表达式语言,就是咱们学习数学时,用一些符号来表明一些数学计算表达。闭包

使用lambda的好处

  • 支持函数式编程,咱们在编程上多一种编程模式选择,对于一些喜欢这种编程方式的人是个福音
  • 使用lambda的地方,每每代码会精简不少,看起来不臃肿,易读,有逼格

这是我我的使用后的一个感觉less

lambda在Java8中的使用

lambda是一种表达式语言,那咱们常见可用的地方就是在一些数学计算描述中,如集合遍历、排序,或者自定义一些lambda表达式,例以下面用于描述集合排序规则:异步

List<String> names = Arrays.asList("peter", "anna", "mike", "xenia”);
// (a,b)->a.compareTo(b) 能够这样直接描述比较的规则
Collections.sort(names, (a,b)->a.compareTo(b));

lambda的用法规则

怎样编写lambda表达式 ?写法很简单,下面这样描述
params -> expression 
params -> {expression}
//在表达式中能够经过::直接调用参数对象拥有的方法,如
a::length
Lambda表达式编写时能够自动参数类型,好比上面对names集合排序时,定义类型时List<String>
(a,b)->a.compareTo(b) // 此时a,b的类型是String类型,你能够向下面这样指定类型,可是多余的
(String a,String b)->a.compareTo(b) // 不用指定String类型修饰,能够自动推导
何时可使用lambda表达式?

Java中新增了一个注解:按照其解释就是说,使用该注解注释的接口都是函数接口,若是接口没有使用该注解声明,也会被当作函数接口。意思就是说,只要是接口类型,咱们均可以传入lambda表达式。在java.util.function包下定义了各类函数接口函数式编程

/**
 * 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 {}
相关文章
相关标签/搜索