干嘛好呢
2016-02-12 14:34
package com.test;
public class iphone {
public static void main(String[]args){
iphone hello=new iphone();
hello.screen=5.0f;
hello.cpu=5.5f;
hello.price=5200;
hello.yy();
hello.call();
}
}
package com.test;
public class miphone {
float screen;
float cpu;
int price;
void yy() {
System.out.println("发信息!");
}
void call() {
System.out.println("screen:" + screen + "cpu:" + cpu + "price:" + price);
}
}
public void yy() { System.out.println("发信息!"); } public void call() { System.out.println("screen:" + screen + "cpu:" + cpu + "price:" + price); }
我建议你把构造方法放在main前面
public void yy() {
}
public void call() {
}
这么写 试试
Java入门第二季 升级版
530650 学习 · 6091 问题
相似问题