我有两个 ArrayLists,其中包含扩展和Parent
扩展的Child
类Child
Parent
Second
First
public First(ArrayList<Parent> parents)
{
// Parent Class's constructor
}
第二类的构造函数
public Second(ArrayList<Child> child)
{
super(child);
// child class's constructor take ArrayList<Child>
}
ArrayList<Child>
可以投到ArrayList<Parent>
吗?