简单范例 1@FunctionalInterface //函数式接口2interface IMessage{3 public void send(String str);4}5public class Lamda {6 public static void main(String args []){7 IMessage msg = (str)->{8 System.out.println("发送消息"+ str);9 };10 msg.send("我在这呢");11 }12} Lamdba表达式如果想要使用,那么必须有一个重要的实现要求:SAM(single Abstract method )只有一个抽象方法。