Retrolambda使用介绍

lambda 語法

input -> body

view -> Log.d(“l”,”log”)

intput 类型

  • 无参
    • void () -> body
  • 单个参数
    • x -> Log.d(“l”,”log”)
  • 两(多)个参数
    • (x, y) -> x + y;
  • 不省略参数类型
    • (int x, int y) -> x + y;

body 类型

  • 方法体为空
    • (x, y ) -> {}
  • 单行,可省略{}
    • (x, y) -> x + y
  • 多行无返回值(void )
    • (x, y) ->{ x * x; y * y; }
  • 多行有返回值
    • (x, y) ->{ x * x; y * y; return x + y; }

在 Android 使用

具体参见:https://github.com/evant/gradle-retrolambda

  1. 下载安裝jdk8,并记得配置
  2. 在 build.gradle(Project)中加上下列(加粗部分)内容
apply plugin: 'com.android.application' 
apply plugin:'me.tatarka.retrolambda'

buildscript {
    repositories {
        mavenCentral()
    }

 dependencies {
     classpath 'me.tatarka:gradle-retrolambda:3.2.5'
 } 
}
  // Required because retrolambda is on maven central
repositories {
    mavenCentral() 
}

3.在 build.gradle(Module) 中添加一下部分

 android {   
     compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8   
        }
    }

例子(按钮监听事件)

使用前的代码:

button.setOnClickListener(new OnClickListener() {
    @Override
     public void onClick(View v) {
         Log.d("onClick", "onClick");
     }
 });

使用后的代码:

 button.setOnClickListener(view->Log.d("onClick", "onClick"));
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值