Collections.sort メソッドと java.util.List を使用して、リストをアルファベット順に並べ替えるプログラムを作成しようとしています。エラーは次のとおりです: 1 つのエラーと 15 の警告が見つかりました:
Error: java.util.List is abstract; cannot be instantiated
--------------
** Warnings **
--------------
Warning: unchecked call to add(E) as a member of the raw type java.util.List
Warning: unchecked method invocation: method sort in class java.util.Collections is applied to given types
required: java.util.List<T>
found: java.util.List
私のコード:
public static void preset(){
List words= new List();
words.add("apple");
words.add("country");
words.add("couch");
words.add("shoe");
words.add("school");
words.add("computer");
words.add("yesterday");
words.add("wowza");
words.add("happy");
words.add("tomorrow");
words.add("today");
words.add("research");
words.add("project");
Collections.sort(words);
} //end of method preset