Android 开发使用lambda实现< JDK8兼容
代码精简无疑是每个程序员的目标,简短易读。java 8中的lambda表达式的使用:
4 easy steps
- Download and install jdk8.
- Add the following to your project’s main build.gradle
buildscript { repositories { mavenCentral() } dependencies { classpath 'me.tatarka:gradle-retrolambda:3.2.3' } }
3. Now add this to your application module’s build.gradle
apply plugin: 'com.android.application' // or apply plugin: 'java' apply plugin: 'me.tatarka.retrolambda'
4. Add these lines to your application module’s build.gradle to inform the IDE of the language level:
android { compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }
开始愉快的👟精简的代码吧
from: https://medium.com/android-news/retrolambda-on-android-191cc8151f85#.4ce4wqq1i
时刻怀有一颗虔诚之心,乐于分享。知识才更有意义。