JAVA程序设计题,在Program和End之间补充。求大神!!
现有父类Good,在此基础上派生出子类Milk,子类定义了自己的属性会员价格(vipPrice),有不带参数的构造方法,覆盖了父类的show方法,调用父类被覆盖的show...
现有父类Good,在此基础上派生出子类Milk,子类定义了自己的属性会员价格(vipPrice),有不带参数的构造方法,覆盖了父类的show方法,
调用父类被覆盖的show方法,增加打印自己的属性的语句。
class Goods{
double unitPrice;//单价
double account;//数量
Goods(double unitPrice, double account){
this.unitPrice=unitPrice;
this.account=account;
}
double totalPrice() {//计算总价格
return unitPrice*account;
}
void show(){
System.out.println("单价是"+unitPrice);
System.out.println("购买数量为"+account):
System.out.println("购买商品的总金额是"+this.totalPrice());
}
}
class Milk extends Goods{
/***********Program************/
/**********End**************/
}
public class Prog1{
public static void main(String[] args){
}
} 展开
调用父类被覆盖的show方法,增加打印自己的属性的语句。
class Goods{
double unitPrice;//单价
double account;//数量
Goods(double unitPrice, double account){
this.unitPrice=unitPrice;
this.account=account;
}
double totalPrice() {//计算总价格
return unitPrice*account;
}
void show(){
System.out.println("单价是"+unitPrice);
System.out.println("购买数量为"+account):
System.out.println("购买商品的总金额是"+this.totalPrice());
}
}
class Milk extends Goods{
/***********Program************/
/**********End**************/
}
public class Prog1{
public static void main(String[] args){
}
} 展开
1个回答
展开全部
class Milk extends Goods {
double vipPrice;
Milk(double unitPrice, double account, double vipPrice) {//带参构造函数
super(unitPrice, account);
this.vipPrice = vipPrice;
}
Milk() {//不带参构造函数,默认值为0
super(0, 0);
}
void show() {
super.show();
System.out.println("会员价是" + vipPrice);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询