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

(二)连接两个数组返回新数组

时间:2018-02-03 12:47:04      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:oar   cat   get   turn   个数   post   pos   数组   concat   

public static <T> T[] concat(T[] first, T[] second) {
    return Stream.concat(
            Stream.of(first),
            Stream.of(second)
    ).toArray(i -> (T[]) Arrays.copyOf(new Object[0], i, first.getClass()));
}

 

(二)连接两个数组返回新数组

标签:oar   cat   get   turn   个数   post   pos   数组   concat   

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

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