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

程序会报错

在inital类里 IPlayGame ip1 = new SmartPhone();报错

提问者:qq_还有什么过不了_0 2015-12-29 09:56

个回答

  • qq_还有什么过不了_0
    2015-12-29 10:52:19


    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();
      
       }

    }

  • 天启之魂
    2015-12-29 10:12:34

    你写的太简洁了,报的什么错,还有其余的代码怎么写的....才能判断