为什么有参的构造方法赋了值不能显示出来呢?也没有提示错误啊

主函数

package com.imocc;

public class Initailtelephone {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
      // telephone phone=new telephone();
       telephone phone2=new telephone(5.0f,1.4f,2.0f);
    }

}

构造方法

public telephone(float newscreen,float newcpu,float newmem){
       if(newscreen<3.5){
           System.out.println("您输入的参数有问题,自动赋值3.5");
           screen=3.5f;
       }
       else{
       screen=newscreen;
       }
       cpu=newcpu;
       mem=newmem;
       System.out.println("有参的构造的方法执行了");
   }
}


初级阶段
浏览 1243回答 1
1回答

初级阶段

了解了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java