码迷,mamicode.com
首页 > 其他好文 > 详细

使用Stream输出斐波纳契元组序列

时间:2020-01-22 18:27:13      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:out   print   class   元组   stream   str   limit   map   使用   

使用Stream流输出斐波那契数列:

Stream.iterate(new int[]{0, 1},
        t -> new int[]{t[1],t[0] + t[1]})
    .limit(10)
    .map(t -> t[0])
    .forEach(System.out::println);                            

  

使用Stream输出斐波纳契元组序列

标签:out   print   class   元组   stream   str   limit   map   使用   

原文地址:https://www.cnblogs.com/sueyyyy/p/12228960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!