public static void main(String[] args) {
Map<String,String> a = Maps.newHashMap();
a.put("a", "1");
a.put("b", "2");
a.put("c", "3");
a.put("d", "4");
a.put("e", "5");
Map<String,String> b = Maps.newHashMap();
b.put("a", "1");
b.put("b", "2");
b.put("d", "4");
b.put("e", "5");
b.put("c", "3");
List <String> list = Lists.newArrayList();
System.out.println("Map循环·····························");
a.forEach((key, value) -> {
b.forEach((key1, value1) -> {
if(key==key1) {
list.add (value +value1);
}
});
});
System.out.println("list: " + list);
System.out.println("List循环·····························");
list.forEach((item) -> {
System.out.println("item: " + item);
});
}
以下是lambda表达式的重要特征:
- 可选类型声明:不需要声明参数类型,编译器可以统一识别参数值。
- 可选的参数圆括号:一个参数无需定义圆括号,但多个参数需要定义圆括号。
- 可选的大括号:如果主体包含了一个语句,就不需要使用大括号。
- 可选的返回关键字:如果主体只有一个表达式返回值则编译器会自动返回值,大括号需要指定明表达式返回了一个数值。
Lambda 表达式的简单例子:
// 1. 不需要参数,返回值为 5
() -> 5
// 2. 接收一个参数(数字类型),返回其2倍的值
x -> 2 * x
// 3. 接受2个参数(数字),并返回他们的差值
(x, y) -> x – y
// 4. 接收2个int型整数,返回他们的和
(int x, int y) -> x + y
// 5. 接受一个 string 对象,并在控制台打印,不返回任何值(看起来像是返回void)
(String s) -> System.out.print(s) |