群哥哥
2015-08-22 11:07
为什么会显示The value of the local variable phone2 is not used? 而且在Telphone.java中,private 的三个变量也是显示The value of the field Telphone.screen is not used
你定义的screen,cpu,mem都是私有属性,不能直接用对象.私有属性,要不你就把私有属性改成公有属性,要不你就写get和set方法
package com.imooc;
import com.imooc.Telphone;
public class InitalTelphone {
public static void main(String[] args) {
Telphone phone = new Telphone(5.0f,2.0f,16.0f);
}
}
package com.imooc;
public class Telphone {
private float screen;
private float cpu;
private float mem;
......
}
我的代码是这样的,对象名phone,和三个变量名 都提示 The value of the field Telphone.screen is not used;...
代码?
Java入门第二季 升级版
530559 学习 · 6091 问题
相似问题