//file import java.util.*; public class Lists { public void test() { List xs = new ArrayList(); List ys = new LinkedList(); ArrayList zs = new ArrayList(); xs.add(null); ys.add(null); xs.clear(); ys.clear(); zs.add(null); } }