Online Java Compiler By
JavaTpoint.com
import java.util.*; public class CollectionsEmptyListExample3 { public static void main(String[] args) { //Create an empty List List
empList = Collections.emptyList(); empList.add(1); empList.add(2); System.out.println("Created empty immutable List: "+empList); } }
Output