Java8 基本类型数组转换为List
2021-02-23 本文已影响0人
笔记本65
只支持int, long, double三种类型,其他基本类型不行
list = Arrays.stream(arrays).boxed().collect(Collectors.toList());
参考:https://blog.csdn.net/da_kao_la/article/details/89087076
只支持int, long, double三种类型,其他基本类型不行
list = Arrays.stream(arrays).boxed().collect(Collectors.toList());
参考:https://blog.csdn.net/da_kao_la/article/details/89087076