标签:instance 有一个 eof prot 存储 关系 数据 define typeof
记住下面三句话就可以理解原型:
原型链:如果引用构造函数的实例想要查找某个属性p的话:
这种搜索的轨迹,形似一条长链, 又因prototype在这个游戏规则中充当链接的作用,于是我们把这种实例与原型的链条称作:原型链
alert(instance instanceof Object);//true
alert(instance instanceof Father);//true
alert(instance instanceof Son);//true
alert(Object.prototype.isPrototypeOf(instance));//true
alert(Father.prototype.isPrototypeOf(instance));//true
alert(Son.prototype.isPrototypeOf(instance));//true
标签:instance 有一个 eof prot 存储 关系 数据 define typeof
原文地址:https://www.cnblogs.com/my466879168/p/12332915.html