假设我们有两个类Parent和Child,Child正在扩展Parent类
class Parent {
// Some variables and methods
}
class Child extends Parent {
// Some variables and methods
}
我们有两个列表
List< ? extends Parent> parent
和
List<Child> child
然后
parent = child
可能,但为什么
child = parent
不可能吗?