interface Playable {void play();}interface Bounceable {void play();}interface Rollable extends Playable, Bounceable {Ball ball = new Ball("PingPang");}class Ball implements Rollable {private String name;public String getName() {return name;}public Ball(St

题目

interface Playable {

void play();

}

interface Bounceable {

void play();

}

interface Rollable extends Playable, Bounceable {

Ball ball = new Ball("PingPang");

}

class Ball implements Rollable {

private String name;

public String getName() {

return name;

}

public Ball(String name) {

this.name = name;

}

public void play() {

ball = new Ball("Football");

System.out.println(ball.getName());

}

}

这个错误不容易发现。


相似考题
更多“interface Playable { void play(); } interface Bounceable { void play(); } inter ”相关问题
  • 第1题:

    Usetheoutputfromtheroutershowninthegraphicabovetodeterminewhichofthefollowingarecorrect.()

    A.Router John uses alink-state routing protocol.

    B.Router John will receive routing updates on the Serial0/0 interface.

    C.Router John will receive routing updates on the Serial0/1 interface.

    D.Router John will send routing updates out the Serial0/0 interface.

    E.Router John will send routing updates out the FastEthernet0/0 interface.

    F.Router John will send routing updates out the Serial0/1 interface.


    参考答案:B, D

  • 第2题:

    下列关于interface的说法正确的是:

    A.interface中可以有private方法

    B.interface中可以有final方法

    C.interface中可以有function实现

    D.interface可以继承其他interface


    interface 可以继承其他 interface

  • 第3题:

    竞技体育演进过程经历的阶段是()。

    A.游戏(game)→玩耍(play)→竞技体育(sport)

    B.玩耍(play)→游戏(game)→竞技体育(sport)

    C.竞技体育(sport)→玩耍(play)→游戏(game)

    D.竞技体育(sport)→游戏(game)→玩耍(play)


    玩耍(play)→游戏(game)→竞技体育(sport)

  • 第4题:

    竞技体育演进过程经历的阶段是

    A.游戏(game)→玩耍(play)→竞技体育(sport)

    B.玩耍(play)→游戏(game)→竞技体育(sport)

    C.竞技体育(sport)→玩耍(play)→游戏(game)

    D.竞技体育(sport)→游戏(game)→玩耍(play)


    玩耍(play)→游戏(game)→竞技体育(sport)

  • 第5题:

    1、竞技体育演进过程经历的阶段是()。

    A.游戏(game)→玩耍(play)→竞技体育(sport)

    B.玩耍(play)→游戏(game)→竞技体育(sport)

    C.竞技体育(sport)→玩耍(play)→游戏(game)

    D.竞技体育(sport)→游戏(game)→玩耍(play)


    玩耍(play)→游戏(game)→竞技体育(sport)

  • 第6题:

    下列关于interface的说法正确的是:

    A.interface中可以有private方法

    B.interface中可以有final方法

    C.interface中可以有方法的具体实现

    D.interface可以继承其他interface


    interface 可以继承其他 interface