Java:转换List< Integer>的最佳方法到List< String> [英] Java: Best way of converting List<Integer> to List<String>

查看:1264
本文介绍了Java:转换List< Integer>的最佳方法到List< String>的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个整数列表, List< Integer> ,我想将所有的整数对象转换为字符串,从而结束一个新的 List< String>

I have a list of integers, List<Integer> and I'd like to convert all the integer objects into Strings, thus finishing up with a new List<String>.

当然,我可以创建一个新的 List< String> 并循环遍历每个整数调用 String.valueOf()的列表,但我想知道是否有更好的(读: / em>)方法?

Naturally, I could create a new List<String> and loop through the list calling String.valueOf() for each integer, but I was wondering if there was a better (read: more automatic) way of doing it?

推荐答案

据我所知,迭代和实例化是唯一的方法。有些事情(对于其他潜在的帮助,因为我相信你知道如何做到这一点):

As far as I know, iterate and instantiate is the only way to do this. Something like (for others potential help, since I'm sure you know how to do this):

List<Integer> oldList = ...
/* Specify the size of the list up front to prevent resizing. */
List<String> newList = new ArrayList<String>(oldList.size()) 
for (Integer myInt : oldList) { 
  newList.add(String.valueOf(myInt)); 
}

这篇关于Java:转换List&lt; Integer&gt;的最佳方法到List&lt; String&gt;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆