真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

javascript設(shè)計(jì)模式之迭代器模式的示例分析-創(chuàng)新互聯(lián)

這篇文章主要介紹了javascript設(shè)計(jì)模式之迭代器模式的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

成都創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的吳起網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

迭代器模式分為內(nèi)部迭代器和外部迭代器,內(nèi)部迭代器就是在函數(shù)內(nèi)部定義好迭代的規(guī)則,它完全接手整個(gè)迭代的過程,外部只需一次初始調(diào)用。

內(nèi)部迭代器

以下自行實(shí)現(xiàn)的類似jquery中$.each()的each()函數(shù)就是內(nèi)部迭代器

//實(shí)現(xiàn)一個(gè)jq的$.each()迭代器

var arr = [1, 2, 3, 4, 5, 6, 7, 8]

var each = function(arr, callback){
  for(var i=0; i

內(nèi)部迭代器在調(diào)用時(shí)非常方便,但是有一個(gè)缺點(diǎn),就是無法同時(shí)迭代兩個(gè)目標(biāo)值,比如上述each函數(shù)就無法同時(shí)迭代兩個(gè)數(shù)組。

對(duì)兩個(gè)數(shù)組做相等性判斷時(shí),如果不改迭代器內(nèi)部方法實(shí)現(xiàn),只能通過each的回調(diào)函數(shù)進(jìn)行實(shí)現(xiàn),雖然能實(shí)現(xiàn),但不是很優(yōu)雅。

//對(duì)兩個(gè)數(shù)組做相等性判斷時(shí),如果不改迭代器內(nèi)部方法實(shí)現(xiàn),只能通過each的回調(diào)函數(shù)進(jìn)行實(shí)現(xiàn),雖然能實(shí)現(xiàn),但不是很優(yōu)雅。
let compare = function (ary1, ary2) {
  if(ary1.length !== ary2.length){
    throw new Error('ar1和ary2長(zhǎng)度不相等。')
  }

  each(ary1, function (i, n) {
    if(n !== ary2[i] ){
      throw new Error('ary1和ary2不相等。')
    }
  })

  console.log('ary1和ary2相等!');
}

compare([1,2,3], [1,2, 3])

外部迭代器

外部迭代器必須顯示請(qǐng)求迭代下一個(gè)元素,雖然這樣做會(huì)增加調(diào)用的復(fù)雜度,但也會(huì)增強(qiáng)迭代的操作靈活性,程序可以手工控制迭代的過程和順序。

外部迭代器示例代碼1:

let Iterator = function (obj) {
  let current = 0;

  let next = function () {
    current += 1
  }

  let isNotDone = function () {
    return current <= obj.length
  }

  let getCurrentItem = function () {
    return obj[current];
  }

  return {
    next,
    isNotDone,
    getCurrentItem
  }
}

//外部迭代器通過next方法進(jìn)行手工迭代
let arr = ['a', true, false, '10', 88, 741]
let iterator1 = Iterator(arr)
console.log(iterator1.getCurrentItem()); // a
iterator1.next() 
console.log(iterator1.getCurrentItem()); // true
iterator1.next() 
console.log(iterator1.getCurrentItem()); // false
iterator1.next() 
console.log(iterator1.getCurrentItem()); // '10'


//改寫compare函數(shù)
let compare = function (iterator1, iterator2) {
  while(iterator1.isNotDone() && iterator2.isNotDone()){
    if(iterator1.getCurrentItem() !== iterator2.getCurrentItem()){
      throw new Error('iterator1和iterator2不相等。')
    }
    iterator1.next()
    iterator2.next()
  }

  console.log('iterator1和iterator2相等。');
}

let iterator1 = Iterator([1, 2, 3, 4])
let iterator2 = Iterator([1, 2, 3, 4, 5])

compare(iterator1, iterator2)  //iterator1和iterator2不相等。

外部迭代器示例代碼2:

let Iterator = function (array) {
  let nextIndex = 0;

  return {
    next: function () {
      return nextIndex < array.length ?
          {value: array[nextIndex++], done: false}:
          {done: true};
    }
  }
}

let it = Iterator(['a', 3, 10])
console.log(it.next().value);  //a
console.log(it.next().value);  //3
console.log(it.next().value);  //10  迭代到這步已經(jīng)把所有值都迭代完成
console.log(it.next().done);  //true

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“javascript設(shè)計(jì)模式之迭代器模式的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!


本文題目:javascript設(shè)計(jì)模式之迭代器模式的示例分析-創(chuàng)新互聯(lián)
文章地址:http://weahome.cn/article/csjdco.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部