Convert array to LinkedList trong java với ví cụ thể

Để convert array trong java sang LinkedList chúng ta có các cách như sau:

Arrays.asList()

Chúng ta có thể dùng addAll() của LinkedList để thêm một collection vào và ArrayList.asList() sẽ giúp chúng ta convert array sang collection.

import java.util.Arrays;
import java.util.LinkedList;

public class Main {
    public static void main(String args[]) {
        LinkedList<Integer> linkedList = new LinkedList<>();
        Integer[] arr = {1, 2, 3};
        linkedList.addAll(Arrays.asList(arr));
        System.out.println(linkedList);
    }
}

Output: [1, 2, 3]

Code chay

Chúng ta cũng có thể duyệt qua các phần tử trong array và thêm vào LinkedList

import java.util.LinkedList;

public class Main {
    public static void main(String args[]) {
        LinkedList<Integer> linkedList = new LinkedList<>();
        Integer[] arr = {1, 2, 3};
        for(int i : arr) {
            linkedList.add(i);
        }

        System.out.println(linkedList);
    }
}

Output: [1, 2, 3]

‹Previous Next›

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x