var a = { test : function () { }}function b() { // b 构造函数 this.j=3;}var t = new b(); //T实例b.prototype ; // b 的原型对象b.__proto__; //?有没有这种写法t.__proto__; //?有没有这种写法t.prototype; //?有没有这种写法a.prototype; //?有没有这种写法a.__proto__; //?有没有这种写法想问一下什么时候用prototype 然后b.__proto__; //?有没有这种写法t.__proto__; //?有没有这种写法t.prototype; //?有没有这种写法a.prototype; //?有没有这种写法a.__proto__; //?有没有这种写法
1 回答
肥皂起泡泡
TA贡献1829条经验 获得超6个赞
初始状态只有函数有prototype.
实例的__proto__指向其构造函数的prototype.
函数也有__proto__因为函数是Function函数构造函数的实例。
添加回答
举报
0/150
提交
取消