标签:nbsp UNC 构造方法 dem ati ali lam strong static
一、接口注解(@FunctionalInterface)
@FunctionalInterface interface Interface1 { public void print(); } public class LambdaTest { public static void main(String[] args) { // Interface1 i = new Interface1() { // @Override // public void print() { // System.out.println("QAQ"); // } // }; Interface1 i = () -> System.out.println(" I am lambda Demo"); i.print(); } }
二、引用
标签:nbsp UNC 构造方法 dem ati ali lam strong static
原文地址:https://www.cnblogs.com/linhuanjie/p/9570284.html