12. 장식 자 모드

1. 특징
장식 자 모델 은 특정한 대상 에 게 추가 적 인 직책 을 추가 할 수 있 고 이런 유형 에서 파생 된 다른 대상 에 영향 을 주지 않 는 다.
2、demo
var Plane = function() {}

Plane.prototype.fire = function() {
    console.log('      ');
}

var MissileDecorator = function(plane) {
    this.plane = plane;
}
MissileDecorator.prototype.fire = function() {
    this.plane.fire();
    console.log('    ');
}

var AtomDecorator = function(plane) {
    this.plane = plane;
}
AtomDecorator.prototype.fire = function() {
    this.plane.fire();
    console.log('     ');
}

var plane = new Plane();
plane = new MissileDecorator(plane);
plane = new AtomDecorator(plane);
plane.fire();
//     :       、    、     

참고 문헌:

좋은 웹페이지 즐겨찾기