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

为什么会找不到或无法加载主类InitialTelphone啊?

package sj;

 public class InitialTelphone {

 public static void Main(String[] args) {

   Telphone phone=new Telphone();

   phone.sendMessage();

  phone.cpu=1.4f;

  phone.screen=5.0f;

  phone.mem=2.0f;

  phone.sendMessage();

    }

}


提问者:慕仰5048905 2019-04-16 17:42

个回答

  • 我能尝尝吗
    2019-05-09 15:03:13

    为什么写了两遍phone.sendMessage();

  • 飞狐踏雪
    2019-04-22 09:03:09

    main

  • weixin_慕斯4584881
    2019-04-19 10:37:01

    你的main方法的关键字是不是写错了


  • 隐官
    2019-04-17 09:10:33

    你的main为什么M大写呢?