问答详情
源自:10-5 Java 中的接口

匿名内部类实现接口

package project3;


public class Initail {


public static void main(String[] args) {

// TODO Auto-generated method stub

Telphone tell = new CellPhone();

tell.call();

tell.message();

Telphone tel2 = new SmartPhone();

tel2.call();

tel2.message();

IPlayGame ip1 = new SmartPhone();

ip1.playGame();

IPlayGame ip2 = new Psp();

ip2.playGame();

}

IPlayGame ip4 = new IPlayGame() {


@Override

public void playGame() {

// TODO Auto-generated method stub

System.out.println("使用匿名内部类方法实现接口");

}

};

ip4.playGame();//这个错了

}

//这是原因,不知道怎么错的,求大神解释:Syntax error on token "playGame", Identifier expected after this token

提问者:qq_大宝贝_0 2018-04-08 11:17

个回答

  • 慕UI4628418
    2018-04-08 11:54:59
    已采纳

    ip4 上面一行多了个括号 去掉

  • 飞舞的小鸽子
    2018-04-08 11:58:34

    ip2.palyGame();下面的括号位置不对,加到最下面。

  • 慕UI4628418
    2018-04-08 11:56:45

    在最后面加上一个括号