JS模式:简单的图书馆享元模式

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
<script>
    /*
     *flyweight 享员模式
     */
    //例子是一个图书馆存书借书 ->_->
    var Book = function(id, title, author, genre, pageCount, publisherId, ISBN, checkoutDate, checkoutMember /*还有一些*/){
        this.id = id;
        this.title = title;
        this.author = author;
        this.genre = this.genre;
        this.pageCount = pageCount;
        this.publisherId = publisherId;
        this.ISBN = ISBN;
        /*...*/
        this.checkoutDate = checkoutDate;
        this.checkoutMember = checkoutMember;
    };
    Book.prototype = {
        getTitle : function(){
            return this.title;
        },
        getAuthor : function(){
            return this.author;
        },
        getISBN : function(){
            return this.ISBN;
        },
        /*__more.._*/
        updateCheckoutStatus : function(booId,checkoutDate,checkoutMember){
            this.id = bookId;
            this.checkoutDate = checkoutDate;
            this.checkoutMember = checkoutMember;
            /*_more.._*/
        }
    };

    //下面介绍享元的版本;PS(使用了一个OBJ存书籍,这样就可以存多的书)
    var BookFactory = (function(){
        var existingBooks = {},existingBook;
        return {
            createBook : function(title,author,genre,ISBN){
                existingBook = existingBooks[ISBN];
                if(existingBook){
                    return existingBook;
                }else{
                    var book = new Book(/*_moreData_bookInfo == _*/)
                    return existingBooks[ISBN] = book;
                }
            }
        }
    })();

    var BookRecordManager = (function(){
        var bookRecordDatabase = {};
        return {
            addBookRecord : function(id,ISNB/* == */){
                var book = BookFactory.createBook(/**/);
                bookRecordDatabase[id] = {
                    checkoutDate : checkoutDate,
                    checkoutMember : checkoutMember
                };
            },
            updateCheckoutStatus : function(bookId,xx){
                bookRecordDatabase[bookId] = {
                    xx : tt,
                    oo : yy
                }
            },
            extend : function(){
                /*自定义各种公用方法了*/
            }
        }
    })();
</script>
</body>
</html>

 

转载于:https://www.cnblogs.com/diligenceday/p/3436676.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值