本文主要是介绍Cannot instantiate the type ListComponent的解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
错误代码示例:
private List<Component> children=new List<Component>();
Java中的如上代码将会报出下面这样的的错误,原因是list是接口,而接口不能实例化,故不能直接使用new list直接进行实例化,需要使用任意一个可以实现该接口的类进行实例化,比如:ArrayList
正确代码示例:
private List<Component> children=new ArrayList<Component>();
这篇关于Cannot instantiate the type ListComponent的解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!