zoukankan      html  css  js  c++  java
  • 手写eventhub(发布订阅)

            //手写eventhub(发布订阅)
            //    核心思路:1.使用一个对象作为缓存
            //    2.on负责把方法发布到缓存的eventName数组中
            //    3.emit负责遍历eventName中的方法数组
            //    4.off负责清除缓存中的方法
            class EventHub {
                cache={}
                on(eventName,fn){
                    this.cache[eventName]=this.cache[eventName]||[]
                    this.cache[eventName].push(fn)
                }
                emit(eventName){
                    this.cache[eventName]=this.cache[eventName]||[]
                    this.cache[eventName].forEach(fn=>fn())
                }
                off(eventName,fn){
                    const index=this.cache[eventName].indexOf(fn);
                    if(index>-1){
                        this.cache[eventName][index]=null
                    }
                }
            }

            function fnn(){
                console.log("执行发布订阅了奥");
            }
            let ev=new EventHub();
            ev.on("test",fnn)
            ev.emit("test");
            ev.off("test",fnn);
  • 相关阅读:
    Linux下的ping命令
    git stash
    ansiable
    「疫期集训day4」硝烟
    「线段树」「单点修改」洛谷P1198 [JSOI2008]最大数
    「状压DP」「暴力搜索」排列perm
    「疫期集训day3」要塞
    「疫期集训day2」高地
    「疫期集训day1」无言
    「区间DP」「洛谷P1043」数字游戏
  • 原文地址:https://www.cnblogs.com/mili3/p/14504099.html
Copyright © 2011-2022 走看看