JAVA8 Lambda 函数式代码开发
Posted Expecto Patronum
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA8 Lambda 函数式代码开发相关的知识,希望对你有一定的参考价值。
public class Lambda { public static void main(String[] args) { //未简化 S s = new S() { @Override public void s() { System.out.println("123"); } }; s.s(); //简化 S s1 = ()->{ System.out.println("Lambda简化"); }; s1.s(); } } interface S{ void s(); }
以上是关于JAVA8 Lambda 函数式代码开发的主要内容,如果未能解决你的问题,请参考以下文章