我以为我知道我在用泛型做什么,但显然不知道。
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\