提交 1f004ffa 编写于 作者: E ex_kongxiang

feat(装饰着模式):调整

上级 bf14c503
......@@ -22,4 +22,8 @@ public class DanceDecorator extends CaiyiDecorator {
person.show();
System.out.println("开始跳起动律十足的 铁山靠舞蹈。。。");
}
public void newBehavior(){
System.out.println("阿里巴巴-迪克牛仔舞跳起来。。。");
}
}
......@@ -13,11 +13,13 @@ public class ShowTime {
player1 = new SongDecorator(player1);
player1 = new DanceDecorator(player1);
// 现学
player1.study();
// 现卖
player1.show();
//再来跳一个 舞者专属技能
DanceDecorator decorator = (DanceDecorator) player1;
decorator.newBehavior();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册