欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

手写instanceof (详解原型链) 和 实现绑定解绑和派发的事件类

程序员文章站 2022-07-11 17:03:04
A instanceof B 是判断 A 是否继承自B,是返回true, 否返回false 再精确点就是判断B 是否 再 A 的 原型链上, 什么是原型链,举个例子: 我们定义三个对象: 怎么让这三个对象形成一种继承关系呢 ? 让father 和 son 继承 grandFather 的 name ......

a  instanceof  b    是判断  a  是否继承自b,是返回true,  否返回false

再精确点就是判断b   是否  再  a  的 原型链上,

什么是原型链,举个例子:

我们定义三个对象:

const grandfather = {
    name: 'liu',
    age: 80
},father = {
    age: 50
},son = {
    age: 18
};

怎么让这三个对象形成一种继承关系呢 ?  让father 和 son 继承 grandfather  的   name  属性

我们知道对象上有一个内部属性__proto__   ,   该属性的属性值指向改对象的原型,

我们是否可以这样写:

const grandfather = {
    name: 'liu',
    age: 80
},father = {
    age: 50,
    __proto__: grandfather
},son = {
    age: 18,
    __proto__: father
};
console.log(father.name);
console.log(son.name);

ok  ,打印出:

手写instanceof (详解原型链)  和    实现绑定解绑和派发的事件类

原理就是如果对象本身没有查找的属性, 就会沿着原型链也就是__proto__属性往上找直到为null为止。

这就是原型链的概念。

但是__proto__前后加双下划线说明它本质是一个内部属性, 而不是一个正式的对外的api,只是由于浏览器广泛支持,才被加入了es6, 

所以只有浏览器必须部署这个属性,其他运行环境不一定要部署,因此,无论从语义的角度,还是从兼容性的角度,都最好不要使用这个属性,

而是使用object.setprototyleof(写操作), object.getprototyleof(读操作), object.create(生成操作), 

所以我们改成这样:

const grandfather = {
    name: 'liu',
    age: 80
},father = {
    age: 50,
},son = {
    age: 18,
};
object.setprototypeof(father, grandfather);
object.setprototypeof(son, father);
console.log(father.name);
console.log(son.name);

打印结果是一样的。

 又或者这样:

const grandfather = {
        name: 'liu',
        age: 80
    },
    father = object.create(grandfather),
    son = object.create(father);
father.age = 50;
son.age = 18;
console.log(father.name);
console.log(son.name);

打印结果也是一样的。

原型链大家弄清楚了 我们就可以写一个instanceof 的 方法了:

function instanceofmy (a, b) {
    const proto = object.getprototypeof(a), prototype = b.prototype;
    if (proto === null || proto === undefined) {
        return false;
    } else if (proto === prototype) {
        return true;
    } else {
        return instanceofmy(object.getprototypeof(proto), b);
    }
}
// 测试
console.log(instanceofmy({}, object));
console.log(instanceofmy([], array));
function test() {}
let test = new test();
console.log(instanceofmy(test, test));
console.log(instanceofmy('', array));

测试结果:

手写instanceof (详解原型链)  和    实现绑定解绑和派发的事件类

利用递归来沿着原型链往上查找, 有同学不想用递归,太耗费内存了,我们可以改成while循环:

function instanceofmy (a, b) {
    let proto = object.getprototypeof(a), prototype = b.prototype;
    while (proto !== null && proto !== undefined) {
        if (proto === prototype) {
            return true;
        } else {
            proto = object.getprototypeof(proto);
        }
    }
    return false;
}

proto = null 作为while循环的出口, 出来了就return false。

 

---------------------------------------------------------------------------分割线

 

实现绑定/派发自定义事件的事件类

有时候我们需要自定义一个事件并在特定的条件下手动触发该事件绑定的函数,

这个时候我们就需要这样一个事件类:

class event {
    constructor() {
        // 存事件和回调函数的对象
        this.cache  = {};
    }
    // 绑定事件
    on (type, callback) {
        if (this.cache[type] && !this.cache[type].includes(callback)) {
            this.cache[type].push(callback);
        } else if (this.cache[type] && this.cache[type].includes(callback)) {
            return this;
        } else {
            this.cache[type] = [callback];
        }
        return this;
    }

    // 触发事件
    trigger(type, ...params) {
        if (this.cache[type]) {
            this.cache[type].foreach(fn => {
                fn(...params);
            })
        }
        return this;
    }

    // 解绑事件
    off(type, callback) {
        // 传了callback清除指定callback, 没传清空数组
        if (this.cache[type] && this.cache[type].includes(callback)) {
            this.cache[type].split(this.cache[type].findindex(callback), 1);
        } else if (this.cache[type] && !callback) {
            this.cache[type] = [];
        }
        return this;
    }
}
const event = new event();

// 测试
function start(str) {
    console.log(str + ' start');
}
function end(str) {
    console.log(str + ' end');
}
event.on('start', start)
    .on('start', end)
    .trigger('start', 'hello world')
    .off('start')
    ;

我们先给一个自定start事件绑定两个函数,然后传参触发, 最后解绑

打印结果:

手写instanceof (详解原型链)  和    实现绑定解绑和派发的事件类

这样这个事件类就写完了