Java 8的一个大亮点是引入Lambda表达式,使用它设计的代码会更加简洁。当开发者在编写Lambda表达式时,也会随之被编译成一个函数式接口。 但是目前的Android Studio还不支持Java8新特性,因此为了使用它只能曲线救国了
Java 8的一个大亮点是引入Lambda表达式,使用它设计的代码会更加简洁。当开发者在编写Lambda表达式时,也会随之被编译成一个函数式接口。
但是目前的Android Studio还不支持Java8新特性,因此为了使用它只能曲线救国了:借助retrolambda
1.将你的jdk升级成1.8,然后配置好环境
2.将你的sdk更新至24
3.在项目的Project gradle文件配置retrolambda插件的地址:
如下:
buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.3' classpath 'me.tatarka:gradle-retrolambda:3.2.5' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }}
--结束END--
本文标题: Android studio配置lambda表达式教程
本文链接: https://lsjlt.com/news/223267.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0