第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定

Student1 sss = new Student1("張三", "北京", '男',25); student1繼承了person1的所有方法,為什么不能執(zhí)行呢,會報(bào)錯(cuò)(最后兩行)

class?Person1{
	private?String?name?;
	private?String?address?;
	private?char?sex?;
	private?int?age?;
	public?Person1()?{
	}
	public?Person1(String?name,?String?address,?char?sex,?int?age)?{
		super();
		this.name?=?name;
		this.address?=?address;
		this.sex?=?sex;
		this.age?=?age;
	}
	public?String?toString()?{
		return?"名字:"?+?this.name+?",?地址:"?+?this.address?+?",性別:"?+?this.sex?+?",年齡:"?+?this.age;
	}
}

class?Student1?extends?Person1{
	private?double?math;
	private?double?english;
	public?Student1()?{
		
	}
	public?Student1(double?math,?double?english)?{
		super();
		this.math?=math;
		this.english?=?english;
	}
	public?Student1(String?name,?String?address,?char?sex,?int?age,?double?math,?double?english)?{
		super(name,?address,?sex,?age);
		this.math?=math;
		this.english?=?english;
		
	}
	public?String?toString()?{
		return?super.toString()?+"數(shù)學(xué)成績:"?+?this.math?+",英語成績:"?+?this.english;
	}
}

public?class?FouthTest1?{
	public?static?void?main(String[]?args)?{
		Student1?ss?=?new?Student1("張三"?,?"xian"?,?'男'?,25?,?100.0?,?95.2?);
		System.out.println(ss);
		Student1?s?=?new?Student1(25.6,93.3);
		System.out.println(s);
		Student1?sss?=?new?Student1("張三",?"北京",?'男',25);
		System.out.println(sss);
	}
}


正在回答

1 回答

子類student1的構(gòu)造方法跟父類的構(gòu)造方法參數(shù)不匹配

1 回復(fù) 有任何疑惑可以回復(fù)我~
#1

慕九州4223353 提問者

子類不是繼承了父類的方法嗎?怎么樣才可以呢
2017-09-22 回復(fù) 有任何疑惑可以回復(fù)我~
#2

容錯(cuò)率 回復(fù) 慕九州4223353 提問者

Student1這個(gè)類中沒有四個(gè)參數(shù)的構(gòu)造方法,而你程序的倒二行卻調(diào)用了四個(gè)參數(shù)的構(gòu)造方法,子類Student1并不會自動(dòng)繼承父類Person1的四個(gè)參數(shù)的構(gòu)造方法,所以報(bào)錯(cuò)。
2017-09-23 回復(fù) 有任何疑惑可以回復(fù)我~
#3

容錯(cuò)率 回復(fù) 慕九州4223353 提問者

在Student1里面加一個(gè)四個(gè)參數(shù)的構(gòu)造方法應(yīng)該就可以了。 public Student1(String name, String address, char sex, int age) { super(name,address,sex,age); } 加上上面這段代碼試試。
2017-09-23 回復(fù) 有任何疑惑可以回復(fù)我~
#4

慕九州4223353 提問者

好的謝謝明白了
2017-09-24 回復(fù) 有任何疑惑可以回復(fù)我~
查看1條回復(fù)

舉報(bào)

0/150
提交
取消

Student1 sss = new Student1("張三", "北京", '男',25); student1繼承了person1的所有方法,為什么不能執(zhí)行呢,會報(bào)錯(cuò)(最后兩行)

我要回答 關(guān)注問題
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號