The selection cannot be launched ,and there are no recent launches無法啟動選擇,并且沒有最近的啟動(問題出現在哪里)
package com.imooc;
public class Telphone {
float screen;
float cpu;
float mem;
void call() {
System.out.println("telphone有打電話的功能");
}
void sendMessage() {
System.out.println("screen:"+screen+"cpu:"+cpu+"mem:"+mem+"Telphone有發短信的功能!");
}
}
2019-02-21
你這個類里只定義了兩個方法:call()方法和sendMessage()方法而并沒有主方法main
即沒有程序入口,怎么可能啟動?
2019-04-22