论坛首页 Web前端技术论坛

由 OO 继承来谈谈 javascript 继承

浏览 7577 次
精华帖 (0) :: 良好帖 (1) :: 新手帖 (1) :: 隐藏帖 (0)
作者 正文
   发表时间:2011-11-19  
赞..能补充下,
继承后.NoFruit.prototype的constructor指向吗
0 请登录后投票
   发表时间:2011-11-19   最后修改:2011-11-19
凑热闹.....


  • 大小: 8.2 KB
0 请登录后投票
   发表时间:2011-11-20  
msnvip 写道
赞..能补充下,
继承后.NoFruit.prototype的constructor指向吗


继承后 NotFruit.prototype.constructor 的指向为其基类 -- Fruit
这个也可以自己运行代码来尝试,可以在源代码基础上的末尾删除最后一行语句后(出错代码 alert(dog.notFoundFruit());)添加如下代码:

alert(NotFruit.prototype.constructor == Fruit); // 输出 true
alert(NotFruit.prototype.constructor == NotFruit);// 输出false


或者

alert(NotFruit.prototype.constructor);
       /* 输出 function Fruit(){
                  this.fruit = true;
               }*/

0 请登录后投票
论坛首页 Web前端技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics