java8 :: 用法 (JDK8 双冒号用法)

举报
tea_year 发表于 2021/12/22 23:38:16 2021/12/22
【摘要】 JDK8中有双冒号的用法,就是把方法当做参数传到stream内部,使stream的每个元素都传入到该方法里面执行一下。 代码其实很简单: 以前的代码一般是如此的: public class AcceptMethod { public static void printValur(String str){ S...

JDK8中有双冒号的用法,就是把方法当做参数传到stream内部,使stream的每个元素都传入到该方法里面执行一下。

代码其实很简单:

以前的代码一般是如此的:


  
  1. public class AcceptMethod {
  2. public static void printValur(String str){
  3. System.out.println("print value : "+str);
  4. }
  5. public static void main(String[] args) {
  6. List<String> al = Arrays.asList("a","b","c","d");
  7. for (String a: al) {
  8. AcceptMethod.printValur(a);
  9. }
  10. //下面的for each循环和上面的循环是等价的
  11. al.forEach(x->{
  12. AcceptMethod.printValur(x);
  13. });
  14. }
  15. }

  
  1. public class MyTest {
  2. public static void printValur(String str){
  3. System.out.println("print value : "+str);
  4. }
  5. public static void main(String[] args) {
  6. List<String> al = Arrays.asList("a", "b", "c", "d");
  7. al.forEach(AcceptMethod::printValur);
  8. //下面的方法和上面等价的
  9. Consumer<String> methodParam = AcceptMethod::printValur; //方法参数
  10. al.forEach(x -> methodParam.accept(x));//方法执行accept
  11. }
  12. }

  
  1. 上面的所有方法执行玩的结果都是如下:
  2. 1
  3. 2
  4. 3
  5. 4
  6. print value : a
  7. print value : b
  8. print value : c
  9. print value : d
  10.   在JDK8中,接口Iterable 8中默认实现了forEach方法,调用了 JDK8中增加的接口Consumer内的accept方法,执行传入的方法参数。
  11. JDK源码如下:
  12. 1
  13. 2
  14. 3
  15. 4
  16. 5
  17. 6
  18. 7
  19. 8
  20. 9
  21. 10
  22. 11
  23. 12
  24. 13
  25. 14
  26. 15
  27. 16
  28. 17
  29. 18
  30. 19
  31. 20
  32. 21
  33. 22
  34. 23
  35. 24
  36. 25
  37. /**
  38. * Performs the given action for each element of the {@code Iterable}
  39. * until all elements have been processed or the action throws an
  40. * exception. Unless otherwise specified by the implementing class,
  41. * actions are performed in the order of iteration (if an iteration order
  42. * is specified). Exceptions thrown by the action are relayed to the
  43. * caller.
  44. *
  45. * @implSpec
  46. * <p>The default implementation behaves as if:
  47. * <pre>{@code
  48. * for (T t : this)
  49. * action.accept(t);
  50. * }</pre>
  51. *
  52. * @param action The action to be performed for each element
  53. * @throws NullPointerException if the specified action is null
  54. * @since 1.8
  55. */
  56. default void forEach(Consumer<? super T> action) {
  57. Objects.requireNonNull(action);
  58. for (T t : this) {
  59. action.accept(t);
  60. }
  61. }

JDK8改动的,在接口里面可以有默认实现,就是在接口前加上default,实现这个接口的函数对于默认实现的方法可以不用再实现了。类似的还有static方法。现在这种接口除了上面提到的,还有BiConsumer,BiFunction,BinaryOperation等,在java.util.function包下的接口,大多数都有,后缀为Supplier的接口没有和别的少数接口。

文章来源: aaaedu.blog.csdn.net,作者:tea_year,版权归原作者所有,如需转载,请联系作者。

原文链接:aaaedu.blog.csdn.net/article/details/104526433

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。