首页题库练习题目详情
面向对象程序设计单选题中等

以下代码中未体现多态的是?

AAnimal a = new Cat();
BAnimal a = new Dog();
Ca.speak();
DCat c = new Cat();