问答详情
源自:10-3 Java 中的抽象类

java4-3中的抽象类

package com.imooc;

public class Cellphone extends Telphone {

	@Override
	public void call() {
		// TODO Auto-generated method stub

	}

	@Override
	public void message() {
		// TODO Auto-generated method stub

	}
	
}在cell和message下划红线,提示(Multiple markers at this line
	- implements com.imooc.Telphone.message
	- The method message() of type Cellphone must override or implement a supertype )


提问者:不能羞 2016-03-22 21:55

个回答

  • weibo_城市废墟里的蟑螂_0
    2016-04-03 13:10:09

    你把@overside先删掉后保存,再打开,就没有了

  • aryong
    2016-03-31 15:32:05

    没事的,测试程序运行一下就可以了

  • 请输入昵称已被使用
    2016-03-22 23:16:55

    你在方法里填上执行语句试试,不行就把你的那个父类Telphone也贴上来呗

  • qq_天道酬勤_5
    2016-03-22 22:53:40

    你的问题是啥啊?