最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JS實現(xiàn)簡單的圖書館享元模式實例

 更新時間:2015年06月30日 12:13:44   作者:方方和圓圓  
這篇文章主要介紹了JS實現(xiàn)簡單的圖書館享元模式,以一個圖書館存書借書的例子分析了圖書館享元模式的實現(xiàn)技巧,需要的朋友可以參考下

本文實例講述了JS實現(xiàn)簡單的圖書館享元模式。分享給大家供大家參考。具體如下:

<!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>

希望本文所述對大家的javascript程序設(shè)計有所幫助。

相關(guān)文章

最新評論

华蓥市| 南溪县| 常德市| 稻城县| 黔江区| 盐池县| 介休市| 尼木县| 安西县| 江安县| 枞阳县| 兴国县| 依兰县| 崇礼县| 益阳市| 深泽县| 灵山县| 星座| 南雄市| 集安市| 特克斯县| 会昌县| 改则县| 宿迁市| 金平| 芦溪县| 东方市| 琼结县| 南皮县| 盐亭县| 天祝| 化德县| 镶黄旗| 霍林郭勒市| 靖边县| 乌拉特中旗| 锦屏县| 四川省| 滨海县| 九台市| 玉门市|