题目内容

请阅读下面的程序,在空白处填写正确的代码,保证最终的结果是:我是一只松狮狗。 class Animal { public Animal() { System.out.println("我是一只动物"); } public Animal(String name) { System.out.println("我是一只" + name); }} class Dog extends Animal { public Dog() { ____; } } public class Demo { public static void main(String[] args) { Dog d = new Dog(); } }

查看答案
更多问题

阅读下面的代码片段: public static void main(String[] args) { // 使用Lambda表达式方式 printName("赵丽颖", name -> new Person(name)); // 使用构造器引用的方式 ____;}请在横线处根据提示补充代码。

阅读下面的程序,在不new Cat类的情况下,添加代码运行Demo的mian方法后执行Cat的eat()方法。 public class Demo { public static void main(String[] args) { Animal animal = new Cat(); ____; cat.eat(); } }class Animal{ public void eat(){ System.out.println("animal eat"); } } class Cat ____Animal{ public void eat(){ System.out.println("cat eat"); } }

Object类中的toString()方法用于返回对象的字符串表示形式。

A. 对
B. 错

JDK8中的接口只能定义常量和抽象方法。

A. 对
B. 错

答案查题题库