我有一个解析器方法,它将在完成时填充用户定义的集合类型。我试图在我的抽象解析器类中抽象这个类。
这是代码
protected List<Collection> parseData(List<Data> data, Class<Collection> collectionType)
{
List<Collection> parsedData = new ArrayList<collectionType>();
//Parse data
return parsedData
}
但是我在列表实例化行上不断收到以下错误:collectionType cannot be resolve to a type, ArrayList cannot be resolve to a type
这是我第一次尝试这样的事情,我不确定出了什么问题。任何帮助,将不胜感激。