How can I initialize a LinkedList with entries/values in it? April 23, 2023 by Tarik You can do that this way: List<Double> temp1 = new LinkedList<Double>(Arrays.asList(1.0, 2.0));