我正在尝试使用以下代码:
List<ItemInterface> interfaceList = new List<ItemInterface>();
Eclipse给出一个错误:无法实例化类型List
此代码有什么问题?
最佳答案
列表本身就是一个接口。您将需要使用类似:
List<ItemInterface> interfaceList = new ArrayList<ItemInterface>();
关于java - Java:类型接口(interface)列表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7664986/