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

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有发短信的功能!");

}

}


提问者:weixin_慕瓜9292654 2019-02-21 21:35

个回答

  • 慕无忌7406412
    2019-02-21 22:40:39
    已采纳

    你这个类里只定义了两个方法:call()方法和sendMessage()方法而并没有主方法main

    即没有程序入口,怎么可能启动?

  • 飞狐踏雪
    2019-04-22 09:05:36

    你需要这样一个东西:
    public static void main(String[] arys){
    
    }