QQZhangSan.__proto__.show() 和QQZhangSan.show()区别如下:
1. 当只有原型上有show()方法, 而实例上没有show()方法 区别如下:
1.1 QQZhangSan.__proto__.show() 中的show方法this始终指向原型对象空间
因为只有commonfriends为原型对象空间中的属性,所以能输出好友信息
其他的this.QQNo,this.QQAge this.QQMark都为undefined
1.2 QQZhangSan.show()会首先从实例对象空间查找show()方法,但是没有找到,
就顺着__proto__【后面说的原型链属性】找到原型对象空间中的show()方法
此刻show()方法中的this表示QQZhangSan实例对象变量,
this.QQNo,this.QQAge this.QQMark都能直接输出,this.commonfriends
会继续查找原型对象空间,在输出好友信息