美文网首页
集合与数组互相转换

集合与数组互相转换

作者: 世道无情 | 来源:发表于2018-11-05 15:57 被阅读0次
    1. 集合、数组互相转换

    在开发过程中,有时候在给一些控件适配数据时有时候需要的是数组,有时候是list集合,这个时候需要知道 list集合和数组之间的转换方式:

    list集合转为数组:

    String[] array = mList.toArray(new String[mList.size()]);

    数组转为list集合:使用原生方式,拆分数组,添加到 新的 resultList 集合中

    List<String> resultList = new ArrayList<>(array.length) ;
    for(String s :array){
    resultList.add(s);
    }

    相关文章

      网友评论

          本文标题:集合与数组互相转换

          本文链接:https://www.haomeiwen.com/subject/esusxqtx.html