这些答案中有很多for循环,但是我发现Iterator和while循环更容易读取。例如:
Iterator<String> itemIterator = Arrays.asList(items).iterator(); if (itemIterator.hasNext()) { // special-case first item. in this case, no comma while (itemIterator.hasNext()) { // process the rest } }
这是Joiner在Google馆藏中采用的方法,我发现它非常易读。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)