示例#1
0
 public void Learn()
 {
     CaffeineBeverage tea = new Tea();
     CaffeineBeverage coffee = new Coffee();
     CaffeineBeverageWithHook coffeeHook = new CoffeeWithHook();
     tea.prepareRecipe();
     coffee.prepareRecipe();
     coffeeHook.prepareRecipe();
 }