Simple Lambda Sample

例1 用lambda表达式实现Runnable

 public static void main(String[] args) {
    Runnable runnable = () -> System.out.println("This is Lambda Test!");
    Thread thread = new Thread(runnable);
    thread.start();
} 
复制代码

例2 使用Java 8 lambda表达式进行事件处理

 public static void main(String[] args) {
    JButton show = new JButton("Show");
    show.addActionListener((e) -> {
        System.out.println("This is Lambda Sample For Action");
    });
}
复制代码

例3 使用lambda表达式对列表进行迭代

 public static void main(String[] args) {
    List<String> features = Arrays.asList("Lambdas", "Default Method", "Stream API", "Date and Time API");
    features.forEach(n -> System.out.println(n));
}
复制代码

例4 使用lambda表达式和函数式接口Predicate

 public static void main(String[] args) {
    List<String> languages = Arrays.asList("Java", "Scala", "C++", "Haskell", "Lisp");

    System.out.println("Languages which starts with J :");
    filter(languages, (str)->str.startsWith("J"));

    System.out.println("Languages which ends with a ");
    filter(languages, (str)->str.endsWith("a"));

    System.out.println("Print all languages :");
    filter(languages, (str)->true);

    System.out.println("Print no language : ");
    filter(languages, (str)->false);

    System.out.println("Print language whose length greater than 4:");
    filter(languages, (str)->str.length() > 4);
}

public static void filter(List<String> names, Predicate<String> condition) {
    names.stream().filter(name->condition.test(name)).forEach(name-> System.out.println(name));
}
复制代码

例5 如何在lambda表达式中加入Predicate

 public static void main(String[] args) {
    List<String> languages = Arrays.asList("Java", "Scala", "Basic", "Haskell", "Lisp");

    Predicate<String> startWithJ = n->n.startsWith("J");
    Predicate<String> fourLengthLetter = n->n.length() == 4;
    languages.stream().filter(startWithJ.and(fourLengthLetter)).forEach(n-> System.out.println("nName, which starts with 'J' and four letter long is : " + n));

    Predicate<String> endWithA = n->n.endsWith("a");
    Predicate<String> fiveLengthLetter = n->n.length() == 5;
    languages.stream().filter(endWithA.or(fiveLengthLetter)).forEach(n-> System.out.println("nName, which end with 'a' or five letter long is : " + n));
}
复制代码

例6 Java 8中使用lambda表达式的Map和Reduce示例

 public static void main(String[] args) {
    List<Integer> costBeforeTax = Arrays.asList(100, 200, 300, 400);
    costBeforeTax.stream().map(cost->cost + .12*cost).forEach(cost-> System.out.println(cost));

    double bill = costBeforeTax.stream().map(cost->cost + .12*cost).reduce((sum, cost)->sum + cost).get();
    System.out.println("Total:" + bill);
}
复制代码

例7 通过过滤创建一个String列表

 public static void main(String[] args) {
    List<String> strList = Arrays.asList("abcd", "abcde", "abc", "ab");
    List<String> filtered = strList.stream().filter(x->x.length()>2).collect(Collectors.toList());
    System.out.printf("Original List : %s, filtered list : %s %n", strList, filtered);
}
复制代码

例8 对列表的每个元素应用函数

 public static void main(String[] args) {
    List<String> G7 = Arrays.asList("USA", "Japan", "France", "Germany", "Italy", "U.K.","Canada");
    String G7Countries = G7.stream().map(x -> x.toUpperCase()).collect(Collectors.joining(", "));
    System.out.println(G7Countries);
}
复制代码

例9 复制不同的值,创建一个子列表

 public static void main(String[] args) {
    List<Integer> numbers = Arrays.asList(9, 10, 3, 4, 7, 3, 4);
    List<Integer> distinct = numbers.stream().map(i->i*i).distinct().collect(Collectors.toList());
    System.out.printf("Original List : %s,  Square Without duplicates : %s %n", numbers, distinct);
}
复制代码

例10 计算集合元素的最大值、最小值、总和以及平均值

 public static void main(String[] args) {
    List<Integer> primes = Arrays.asList(2, 3, 5, 7, 11, 13, 17, 19, 23, 29);
    IntSummaryStatistics stats = primes.stream().mapToInt(x->x).summaryStatistics();
    System.out.println("Highest prime number in List : " + stats.getMax());
    System.out.println("Lowest prime number in List : " + stats.getMin());
    System.out.println("Sum of all prime numbers : " + stats.getSum());
    System.out.println("Average of all prime numbers : " + stats.getAverage());
}
复制代码

附:源码地址

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值