Java8 新特性 Lambda

1. 通过Lambda 调用接口

public interface MyInterface {
    String getBuildString(String name);
}
public class Application {
    public static void main(String args[]) {
        System.out.println("test .....");
        /**
         * 1.无需定义参数类型;
         * 2.一个参数可以不适用圆括号,多个参数必须用圆括号;
         */
        MyInterface newName = (name) -> "prefix" + name;
        MyInterface newName2 = (p) -> "prefix" + p;

        System.out.println("test ....." + newName.getBuildString("Tom"));
        System.out.println("test ....." + newName2.getBuildString("Kate"));

    }

}
public class MyTest {
    public static void main(String args[]) {
        //常规的写法
        Thread th = new Thread(new Runnable() {
            @Override
            public void run() {
                System.out.println("线程测试");
            }
        });
        th.start();

        //使用lambda 后的写法
        /**
         * 主体只有一个语句,可以省略大括号,主体有多个语句必须使用大括号;
         */
        // 写法1
        new Thread(()->System.out.println("主体只有一个语句可以省略大括号测试")).start();

        //写法 2
        Thread th2 = new Thread(()->{System.out.println("多条语句执行测试1");System.out.println("多条语句执行测试2");});
        th2.start();
    }
}

2. 通过Lambda 迭代循环

import java.util.HashMap;
import java.util.Map;

public class MyTest {
    public static void main(String args[]) {
        Map<String, String> items = new HashMap<String, String>();
        items.put("key1","Value1");
        items.put("key2","Value1");
        items.put("key3","Value1");
        //常规方法迭代取值
        for(Map.Entry<String, String> entry : items.entrySet()){
            System.out.println("常规方法迭代取值:"+entry.getKey()+":"+entry.getValue());
        }
        //通过Lambda取值
        items.forEach((k,v)->{
            System.out.println("通过Lambda取值:"+k+":"+v);
        });
    }
}
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class MyTest {
    public static void main(String args[]) {
        List<String> items = new ArrayList<String>();
        items.add("list1");
        items.add("list2");
        items.add("list3");

        items.forEach(item-> System.out.println("list Value :"+item+""));
        items.forEach(System.out::println);
        //取出包含字符2的项
        items.stream().filter(s -> s.contains("2")).forEach(i-> System.out.println("过滤后的值:"+i));
        items.stream().filter(s -> s.contains("2")).forEach(System.out::println);
    }
}

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值