问答详情
源自:8-6 Java 中的构造方法

为什么会显示The value of the local variable phone2 is not used?

为什么会显示The value of the local variable phone2 is not used? 而且在Telphone.java中,private 的三个变量也是显示The value of the field Telphone.screen is not used

提问者:群哥哥 2015-08-22 11:07

个回答

  • 伊兮尘昔
    2015-08-25 09:37:11
    已采纳

    你定义的screen,cpu,mem都是私有属性,不能直接用对象.私有属性,要不你就把私有属性改成公有属性,要不你就写get和set方法

  • 群哥哥
    2015-08-24 12:55:52

    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;...


  • 伊兮尘昔
    2015-08-24 11:19:09

    代码?