多项选择题
A.super(..)方法可以放在this(..)方法前面使用 B.this(..)方法可以放在super(..)方法前面使用 C.可以使用super(..)来调用父类中的构造方法 D.可以使用this(..)调用本类的其他构造方法
A.Base base=new Child() B.Base base=new Base() C.Child child=new Child() D.Child child=new Base();
A.abstract B.static C.protected D.final