首页 > 其他 > 详细

抽象工厂(Abstract Factory)

时间:2017-09-16 22:45:28      阅读:251      评论:0      收藏:0      [点我收藏+]

抽象工厂模式是工厂模式的升级版,用于创建一组相关或者相互依赖的对象

// 抽象工厂模式
function Car (name, color) {
    this.name = name;
    this.color = color;
}
Car.prototype.drive = function () {
    console.log(‘drive‘)
}
Car.prototype.breakDown = function () {
    console.log(‘breakDown‘)
}
function Trunk (name, color) {
    this.name = name;
    this.color = color;
}
let AbstractVehicleFactory = (function () {
        let types = [];
        return {
            getVehicle (type, customizations) {
                var Vehicle = types[type];
                return (Vehicle)? new Vehicle(customizations):null;
            },
            registerVehicle (type, Vehicle) {
                let proto = Vehicle.prototype;
                if (proto.drive && proto.breakDown) {
                    types[type] = Vehicle;
                }
                return AbstractVehicleFactory;
            }
        }
    }
)()
AbstractVehicleFactory.registerVehicle(‘car‘, Car);
let car = AbstractVehicleFactory.getVehicle(‘car‘, ‘dsdsds‘)

 虽然代码能看懂,但还是似懂非懂不知道什么时候用,后续继续学习更新~~~

抽象工厂(Abstract Factory)

原文:http://www.cnblogs.com/running1/p/7532994.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!