崔學(xué)社vue源碼實戰(zhàn)課
2022-11-01 15:50 作者:娜娜絡(luò)絡(luò) | 我要投稿
public class Discount {
? ?public double discount(double amount, DiscountStrategy discountStrategy) {
? ? ? ?return discountStrategy.calculate(amount);// ? ?public double discount(double amount, String customerType) {// ? ? ? ?switch (customerType) {// ? ? ? ? ? ?case "VIP":// ? ? ? ? ? ? ? ?return amount * 0.8;// ? ? ? ? ? ?case "VIPAndCoupon":// ? ? ? ? ? ? ? ?return amount * 0.8 - 100;// ? ? ? ? ? ?default:// ? ? ? ? ? ? ? ?return amount;// ? ? ? ?}
? ?}
標(biāo)簽: