📄 saleprice.java
字号:
//: SalePrice.java
//package g3ds.joop.ch5;
//扩展一个类型用来设置打折定价策略
public class SalePrice extends PricePolicy{
private double discount;
public void setDiscount(double discount){
this.discount=discount;
}
public double getPrice(){
return basePrice*discount;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -