Java 中将 ArrayList 转换为 LinkedList 的程序
假设以下是我们的ArrayList-
List<String> arrList = Arrays.asList("John", "Jacob", "Kevin", "Katie", "Nathan");现在,使用toCollection()将此ArrayList转换为LinkedList-
List<String> myList = arrList.stream().collect(Collectors.toCollection(LinkedList::new));
示例
以下是在Java中将ArrayList转换为LinkedList的程序-
import java.util.*;
import java.util.stream.*;
public class Demo {
public static void main(String args[]) {
List<String> arrList = Arrays.asList("John", "Jacob", "Kevin", "Katie", "Nathan");
System.out.println("ArrayList = " + arrList);
List<String> myList = arrList.stream().collect(Collectors.toCollection(LinkedList::new));
System.out.println("LinkedList (ArrayList to LinkedList) = " + myList);
}
}输出结果
ArrayList = [John, Jacob, Kevin, Katie, Nathan] LinkedList (ArrayList to LinkedList) = [John, Jacob, Kevin, Katie, Nathan]
热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短