怎么会报错尼在eclipse中?

来源:8-2 如何定义 Java 中的类

lorenzt

2015-05-11 17:00

package phone;


public class Phone {


public static void main(String[] args) {

double screen;

double cpu;

double ram;

void call(){

System.out.println("Phone can be used to call");

}

void message(){

System.out.println("Phone can be used to send message");

}

}


}


写回答 关注

3回答

  • lorenzt
    2015-05-11 17:28:56

    明白了 定义了个main方法,搞什么鬼。

  • 呵呵呵呵呵呵呵5566
    2015-05-11 17:16:51

    main方法中不能定义方法 只能调用

    lorenz...

    谢谢。

    2015-05-11 18:13:48

    共 2 条回复 >

  • Blackfyre
    2015-05-11 17:16:40

    不能把方法定义到main()方法里面

    public class Phone {


    double screen;

    double cpu;

    double ram;

    void call(){

    System.out.println("Phone can be used to call");

    }

    void message(){

    System.out.println("Phone can be used to send message");

    }

    public static void main(String[] args) {

    }


    }


Java入门第二季 升级版

课程升级!以终为始告别枯燥,在开发和重构中体会Java面向对象编程的奥妙

530553 学习 · 6091 问题

查看课程

相似问题