public class SafeListCopy extends Object { public static void printWords(String[] word) { System.out.println("word.length=" + word.length); for (int i = 0; i < word.length; i++) { System.out.println("word[" + i + "]=" + word[i]); } }
public static void main(String[] args) { List wordList = Collections.synchronizedList(new ArrayList());