多做题,通过考试没问题!

Java认证考试

睦霖题库>其他计算机考试>Java认证考试

class Bird {  static void talk() { System.out.print("chirp "); }  }  class Parrot extends Bird {  static void talk() { System.out.print("hello "); }  public static void main(String [] args) {  Bird [] birds = {new Bird(), new Parrot()};  for( Bird b : birds)  b.talk();  }  }  结果为:() 

  • A、chirp chirp
  • B、chirp hello
  • C、hello hello
  • D、编译失败
正确答案:A
答案解析:
进入题库查看解析

微信扫一扫手机做题