Apache Commons Collections庫的CollectionUtils
類提供各種實(shí)用方法,用于覆蓋廣泛用例的常見操作。 它有助于避免編寫樣板代碼。 這個(gè)庫在jdk 8之前是非常有用的,但現(xiàn)在Java 8的Stream API提供了類似的功能。
CollectionUtils
的collect()
方法可用于將一種類型的對象列表轉(zhuǎn)換為不同類型的對象列表。
聲明
以下是org.apache.commons.collections4.CollectionUtils.collect()
方法的聲明 -
public static <I,O> Collection<O> collect(Iterable<I> inputCollection,
Transformer<? super I,? extends O> transformer)
參數(shù)
null
。transformer
可能為null
。返回值
示例
以下示例顯示org.apache.commons.collections4.CollectionUtils.collect()
方法的用法。 將通過解析String中的整數(shù)值來將字符串列表轉(zhuǎn)換為整數(shù)列表。
import java.util.Arrays;
import java.util.List;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.collections4.Transformer;
public class CollectionUtilsTester {
public static void main(String[] args) {
List<String> stringList = Arrays.asList("1","2","3");
List<Integer> integerList = (List<Integer>) CollectionUtils.collect(stringList,
new Transformer<String, Integer>() {
@Override
public Integer transform(String input) {
return Integer.parseInt(input);
}
});
System.out.println(integerList);
}
}
執(zhí)行上面示例代碼,得到以下結(jié)果 -
[1, 2, 3]