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");
}
}
}
明白了 定义了个main方法,搞什么鬼。
main方法中不能定义方法 只能调用
不能把方法定义到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入门第二季 升级版
530553 学习 · 6091 问题
相似问题