欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
Lambda表达式
 
​ Lambda是一个匿名函数,可以理解为一段可以传递的代码(将代码像数据一样传递);可以写出更简洁、更灵活的代码;作为一种更紧凑的代码风格,是Java语言表达能力得到提升
 
入门演示
 
案例1
 
public class TestMain
 
{
 
    //使用匿名内部类完成比较
 
    @Test
 
    public void test()
 
    {
 
        //比较器                 匿名内部类,创建该接口的一个实现类
 
        Comparator<People> com=new Comparator<People>() {
 
            @Override
 
            public int compare(People o1, People o2) {
 
                return o1.getAge()-o2.getAge();
 
            }
 
        };
 
        //TreeSet的特点是可排序、不重复
 
        TreeSet<People> ts=new TreeSet<>(com);
 
        ts.add(new People("大忽悠",20));
 
        ts.add(new People("小忽悠",18));
 
        ts.add(new People("大大大",22));
 
        ts.add(new People("小朋友",17));
 
        ts.forEach(System.out::println);
 
    }
 
    //lambda表达式替代匿名内部类
 
    @Test
 
    public void test1()
 
    {
 
        //比较器
 
        Comparator<People> com=(p1,p2)-> p1.getAge()-p2.getAge();
 
        //TreeSet的特点是可排序、不重复
 
        TreeSet<People> ts=new TreeSet<>(com);
 
        ts.add(new People("大忽悠",20));
 
        ts.add(new People("小忽悠",18));
 
        ts.add(new People("大大大",22));
 
        ts.add(new People("小朋友",17));
 
        ts.forEach(System.out::println);
 
    }
 
}
 
如何解决 cannot be cast to java.lang.Comparable问题?
 
如何解决 cannot be cast to java.lang.Comparable问题?
 
案例2
 
要求对下面的代码进行优化:
 
public class TestMain
 
{
 
    List<People> peopleList= Arrays.asList(
 
            new People("1号",18,3000),
 
            new People("2号",21,4000),
 
            new People("3号",19,5000),
 
            new People("4号",20,3500)
 
    );
 
    //获取年龄大于18的
 
    public List<People> getAgeOver18()
 
    {
 
        List<People> list=new ArrayList<>();
 
        for (People p:peopleList)
 
        {
 
            if(p.getAge()>18)
 
                list.add(p);
 
        }
 
        return list;
 
    }
 
    //获取工资大于3000的
 
    public List<People> getMoneyOver3000()
 
    {
 
        List<People> list=new ArrayList<>();
 
        for (People p:peopleList)
 
        {
 
            if(p.getMoney()>3000)
 
                list.add(p);
 
        }
 
        return list;
 
    }
 
    @Test
 
    public void test()
 
    {
 
        List<People> ageOver18 = getAgeOver18();
 
        ageOver18.forEach(System.out::println);
 
        System.out.println("======================================");
 
        List<People>  moneyOver3000=getMoneyOver3000();
 
        moneyOver3000.forEach(System.out::println);
 
    }
 
}
 
优化方式一 : 策略设计模式
 
声明一个接口MyPrediect
 
public interface MyPrediect<T>
 
{
 
  public boolean test(T t);
 
}
 
接口的实现类一FilterPeoAge,负责过滤年龄:
 
public class FilterPeoAge implements MyPrediect<People>{
 
    @Override
 
    public boolean test(People people) {
 
        return people.getAge()>18;
 
    }
 
}
 
接口实现类二FilterPeoMoney,负责过滤金钱
 
public class FilterPeoMoney implements MyPrediect<People>{
 
    @Override
 
    public boolean test(People people) {
 
        return people.getMoney()>3000;
 
    }
 
}
 
测试演示:
 
public class TestMain
 
{
 
    List<People> peopleList= Arrays.asList(
 
            new People("1号",18,3000),
 
            new People("2号",21,4000),
 
            new People("3号",19,5000),
 
            new People("4号",20,3500)
 
    );
 
     public List<People> FilterPeo(List<People> list,MyPrediect<People> mp)
 
     {
 
         List<People> peopleList=new ArrayList<>();
 
         for (People p:list)
 
         {
 
             if(mp.test(p))
 
                 peopleList.add(p);
 
         }
 
         return peopleList;
 
     }
 
    @Test
 
    public void test()
 
    {
 
        List<People> peopleList = FilterPeo(this.peopleList, new FilterPeoAge());
 
        peopleList.forEach(System.out::println);
 
        System.out.println("===========================");
 
        List<People> peopleList1 = FilterPeo(peopleList, new FilterPeoMoney());
 
        peopleList1.forEach(System.out::println);
 
    }
 
}

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html/h65207.shtml