问答详情
源自:8-3 如何使用 Java 中的对象

调用方法时出错。求各位大佬指教

package com.imooc;

public class Telephone {
float screen;
float cpu;
void call(){
    System.out.println("这是电话功能");
}
void message(){
    System.out.println("This is the function of sending message!");
}

}



package com.imooc;

public class InitialTelephone {
Telephone phone=new Telephone();
phone.message();
}
  在这个地方总显示message错误,求各位大佬指教

提问者:宝贝花 2018-04-16 20:28

个回答

  • 慕侠5593871
    2018-04-16 20:50:41
    已采纳

    没有main函数好像就不能运行

  • clownboy
    2018-04-16 20:57:00

    对你没有main函数

    package com.imooc;
    public class InitialTelephone {public static void main(String[] args) {
    Telephone phone=new Telephone();
    phone.message();
    }

    }