为了账号安全,请及时绑定邮箱和手机立即绑定

老师,可否问您一下问题

package com.imooc;

public class Initalphone {

	/**
	 * @param args
	 */
	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);
	}
	

}
package com.imooc;

public class TelePhone {
	float screen;
	float cpu;
	float mem;
	public TelePhone(){
		System.out.println("无参的构造方法");
	}


 public TelePhone(newscreen,newcpu,newmem){
 screen=newScreen();
 cpu=newcpu;
 mem=newmem;
 System.out.println("有参的构造方法");
}

}

为什么不行呢?报错呢

正在回答

2 回答

变量名要遵循,驼峰原则

0 回复 有任何疑惑可以回复我~

public Telephone(newscreen,newcpu,newmem)改为

public Telephone(float newscreen ,float newcpu,float newmem)

还有就是screen=newScreen,你输入的参数是newscreen不是newScreen建议下载一个eclips

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

老师,可否问您一下问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信