赞
踩
1、Set集合转数组
// set集合
Set<Integer> idSet = new TreeSet<>();
idSet.add(data.getTypeId());
……
// 定义一个set长度的数组
Integer[] ids = new Integer[idSet.size()];
// set转数组,执行完毕后返回数组,且ids数组存储了set中的值
idSet.toArray(ids);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。