标签:tor 地址 entry bsp function shu jpg detail his
var a=function(){
this.msg="aa";
}
a.prototype.say=function(){ alert(‘this is say‘);}
1.只有函数有prototype ,a.prototype.constructor 指向 a
2.var obj=new a() obj是没有prototype 对象的,但是有constructor切指向a
3.关于继承
var b=function(){
this.msg="bb";
}
b.prototype=new a();// 将函数b的prototype 指向a的一个实例,则b 继承与a , new b() 后就可以用 调用父类的 say 方法
3. b继承a ,最终的msg="bb";
参考地址 http://blog.csdn.net/niuyongjie/article/details/4810835
标签:tor 地址 entry bsp function shu jpg detail his
原文地址:http://www.cnblogs.com/tiancai/p/6872671.html