ジェネリックで何をしているのか知っていると思っていましたが、どうやらそうではありませんでした。
ArraySetList<char> setA = new ArraySetList<char>();
コンパイルすると、次のようになります。
error: unexpected type
ArraySetList<char> setA = new ArraySetList<char>();
^
required: reference
found: char
後続のすべての文字に対して同じエラーが発生します。文字の新しい ArraySetList を宣言する方法を知りたいです。
ここにすべてのファイルがあります。
http://pastebin.com/4h37Xvu4 // ArraySetList (extends ArrayUnsortedList)
http://pastebin.com/FxmynzkC // Driver
http://pastebin.com/CgVA0zjY //ArrayUnsortedList (implements ListInterface)
http://pastebin.com/3iXrCsCc //ListInterface\