Answers for "how to initialize empty list in java and then add to it"

12

how to create a list in java

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

class scratch{
    public static void main(String[] args) {
        List<Integer> aList = new ArrayList<>();
        List<Integer> lList = new LinkedList<>();
    }
}
Posted by: Guest on January-08-2020

Code answers related to "how to initialize empty list in java and then add to it"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language