码迷,mamicode.com
首页 > 编程语言 > 详细

(四)数组扁平化

时间:2018-02-03 12:37:36      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:integer   class   flat   int   数组   post   apt   stat   col   

public static int[] deepFlatten(Object[] input) {
    return Arrays.stream(input)
            .flatMapToInt(o -> {
                if (o instanceof Object[]) {
                    return Arrays.stream(deepFlatten((Object[]) o));
                }
                return IntStream.of((Integer) o);
            }).toArray();
}

 

(四)数组扁平化

标签:integer   class   flat   int   数组   post   apt   stat   col   

原文地址:https://www.cnblogs.com/R4mble/p/8408139.html

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