示例#1
0
 public RedheadDuck()
 {
     flyBehavior   = new FlyWithWings();
     quackBehavior = new QuackNormal();
 }
示例#2
0
 public MallardDuck()
 {
     quackBehavior = new QuackNormal();
     flyBehavior   = new FlyWithWings();
 }