void main(){ SaleTicket t; FootDecorator f(&t); 第一个程序HeadDecorator h(&f); 第二个程序h.printTicket(); 第三个程序cout<<"---------------"<FootDecorator a(NULL); 四个HeadDecorator b(&a); 五个b.printTicket(); 六个}