js面试题--原型和原型链

一、class 和 继承

1. 基本实现

  • class的核心:constructor、属性、方法。
  • 继承的核心:extends、super、扩展或重写方法。
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial=1.0">
    <title>class和继承</title>
</head>

<body>
    <script>
        // 父类
        class People {
            constructor(name) {
                this.name = name
            }
            eat() {
                console.log(`${this.name} 吃东西`);
            }
        }
        // 子类--学生类
        class Student extends People {
            constructor(name, number) {
                super(name)
                this.number = number
            }
            sayHi() {
                console.log(`姓名:${this.name},学号:${this.number}`);
            }
        }
        // 子类--老师类
        class Teacher extends People {
            constructor(name, major) {
                super(name)
                this.major = major
            }

            teach() {
                console.log(`${this.name} 教授 ${this.major}`);
            }
        }
        // 实例
        const xialuo = new Student('夏洛', 100)
        console.log(xialuo.name)
        console.log(xialuo.number)
        xialuo.sayHi()
        xialuo.eat()

        // 实例
        const wanglaoshi = new Teacher('王老师', '语文')
        console.log(wanglaoshi.name)
        console.log(wanglaoshi.major)
        wanglaoshi.teach()
        wanglaoshi.eat()
    </script>
</body>

</html>

2. class的原型本质,怎么理解?

  • class是ES6语法规范,由ECMA委员会发布。
  • ECMA只规定语法规则,即我们代码的书写规范,不规定如何实现。
  • 以上实现方式都是V8引擎的实现方式,也是主流的。

3. class 的应用,手写一个简易的jQuery,考虑插件和扩展性

  • 简易的jQuery
class jQuery {
    constructor(selector) {
        const result = document.querySelectorAll(selector)
        const length = result.length
        for (let i = 0; i < length; i++) {
            this[i] = result[i]
        }
        this.length = length
        this.selector = selector
    }
    get(index) {
        return this[index]
    }
    each(fn) {
        for (let i = 0; i< this.length; i++) {
            const elem = this[i]
            fn(elem)
        }
    }
    on(type, fn) {
        return this.each(elem => {
            elem.addEventListener(type, fn, false)
        })
    }
}
  • 插件
// 插件
jQuery.prototype.dialog = function (info) {
    alert(info)
}
  • 扩展性--“造轮子”
// “造轮子”
class myJQuery extends jQuery {
    constructor(selector) {
        super(selector)
    }
    // 扩展自己的方法
    addClass(className) {

    }
    style(data) {
        
    }
}

二、类型判断 instanceof

三、原型和原型链

1. 原型关系

  • class 实际上是函数,可见是语法糖,具体实现还是使用的原型与原型链。

  • 隐世原型(__proto__)和显示原型(prototype)。

  • 每个 class都有显示原型 prototype
  • 每个实例都有隐式原型 __proto__
  • 实例的 __proto__ 指向对应 class 的 prototype 。

2. 基于原型的执行规则

  • 获取实例的属性或执行方法时,先在自身属性和方法中寻找,如果找不到则自动去隐式原型 __proto__ 中查找,若还是没有找到,则逐级向上查找,当查找到目标或隐式原型 __proto__ 为 null 时,结束查找。

3. 原型链

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值