猿问

代码报错不知道原因

 public class Initial {

 public static void main(String[] args) {
  // TODO Auto-generated method stub

    Telphone tel1 =new Cellphone();
    tel1.call();
    tel1.message();
    Telphone tel2 =new Smartphone();
    tel2.call();
    tel2.message();
   
    IPlayGame ip1 = new Smartphone();//这句总是报错
    IPlayGame ip2 =new Psp();
  
   }

}

 

 

qq_还有什么过不了_0
浏览 1474回答 3
3回答

慕虎2321717

估计是没有无参的构造函数

22不小了

  IPlayGame ip1 = new Smartphone();//这句总是报错  1,包导入了没有 2、类名写错了没有2、构造方法带不带参数

还在2

楼主你应该把其他的类的代码都贴出来的,你现在贴的这段代码是没有错误的,错误应该出在那个IPlayGam类中。
随时随地看视频慕课网APP

相关分类

Java
我要回答