北流科技网站建设,微信小程序商家入口,汕头站扩建后比哪个站大,仪征做网站aicjoy借用原型对象继承父类型方法
目的: 儿子继承父类属性和方法#xff0c;父类之后新增的方法不会被儿子继承。
前言#xff1a;
先理解一个问题#xff1a;
Son.prototype Father.prototype; 这一操作相当于把Son的原型对象指向Father。
意味着Son的prototype的地址与Fa…借用原型对象继承父类型方法
目的: 儿子继承父类属性和方法父类之后新增的方法不会被儿子继承。
前言
先理解一个问题
Son.prototype Father.prototype; 这一操作相当于把Son的原型对象指向Father。
意味着Son的prototype的地址与Father一致如果我给Son新增函数那么Father也会同步新增。 具体代码
function Father(uname, age) {this.uname uname;this.age age;
}
Father.prototype.money function() {console.log(100000);};
function Son(uname, age, score) {Father.call(this, uname, age);this.score score;
}
Son.prototype Father.prototype;let son new Son(刘德华, 18, 100);
console.log(Son.prototype);
console.log(Father.prototype);结果 分析
我们的初衷是儿子继承父类属性和方法父类之后新增的方法不会被儿子继承。
很明显儿子和父亲的成员函数和属性都一致这是由于儿子和父类地址一致导致的。 解决方案
Son.prototype new Father();
首先用new创建一个父类的实例对象然后让Son的原型对象指向这个新创建的对象即可。 从下往上理解
Son原型对象指向Father实例对象继承Father实例对象的属性和方法
Father实例对象含有__proto__属性可以使用Father原型对象的新增的方法
Father原型对象可以新增函数
此时如果Son新增函数由于Son和Father实例对象地址一致只会影响到Father实例对象而不会影响到Father原型对象上。 总结
将子类所共享的方法提取出来让子类的 prototype 原型对象 new 父类()
通过父类实例化对象开辟额外空间就不会影响原来父类的原型对象。
有一说一采用了深拷贝的思想。 Code: // 借用父构造函数继承属性
// 1. 父构造函数
function Father(uname, age) {// this 指向父构造函数的对象实例this.uname uname;this.age age;
}
Father.prototype.money function() {console.log(100000);};
// 2 .子构造函数
function Son(uname, age, score) {// this 指向子构造函数的对象实例Father.call(this, uname, age);this.score score;
}
// Son.prototype Father.prototype; 这样直接赋值会有问题,如果修改了子原型对象,父原型对象也会跟着一起变化
Son.prototype new Father();
// 如果利用对象的形式修改了原型对象,别忘了利用constructor 指回原来的构造函数
Son.prototype.constructor Son;
// 这个是子构造函数专门的方法
Son.prototype.exam function() {console.log(孩子要考试);}
var son new Son(刘德华, 18, 100);
console.log(son);
console.log(Father.prototype);
console.log(Son.prototype.constructor);参考
可以看这两集
https://www.bilibili.com/video/BV1DY41177dM?p37spm_id_frompageDrivervd_source30a98e03cd5a7bbfaeb4416fc48542e2 文章转载自: http://www.morning.yfffg.cn.gov.cn.yfffg.cn http://www.morning.xjnw.cn.gov.cn.xjnw.cn http://www.morning.smjyk.cn.gov.cn.smjyk.cn http://www.morning.gnwse.com.gov.cn.gnwse.com http://www.morning.fpzz1.cn.gov.cn.fpzz1.cn http://www.morning.qkqjz.cn.gov.cn.qkqjz.cn http://www.morning.yjmns.cn.gov.cn.yjmns.cn http://www.morning.fmswb.cn.gov.cn.fmswb.cn http://www.morning.kcxtz.cn.gov.cn.kcxtz.cn http://www.morning.xdpjf.cn.gov.cn.xdpjf.cn http://www.morning.fpbj.cn.gov.cn.fpbj.cn http://www.morning.dmzzt.cn.gov.cn.dmzzt.cn http://www.morning.rcmcw.cn.gov.cn.rcmcw.cn http://www.morning.dkqyg.cn.gov.cn.dkqyg.cn http://www.morning.jppdk.cn.gov.cn.jppdk.cn http://www.morning.hlyfn.cn.gov.cn.hlyfn.cn http://www.morning.xqgtd.cn.gov.cn.xqgtd.cn http://www.morning.sjwiki.com.gov.cn.sjwiki.com http://www.morning.ygwyt.cn.gov.cn.ygwyt.cn http://www.morning.kgphd.cn.gov.cn.kgphd.cn http://www.morning.ntffl.cn.gov.cn.ntffl.cn http://www.morning.lkbdy.cn.gov.cn.lkbdy.cn http://www.morning.nlwrg.cn.gov.cn.nlwrg.cn http://www.morning.rkmhp.cn.gov.cn.rkmhp.cn http://www.morning.wjndl.cn.gov.cn.wjndl.cn http://www.morning.qhtlq.cn.gov.cn.qhtlq.cn http://www.morning.hwcln.cn.gov.cn.hwcln.cn http://www.morning.gqhgl.cn.gov.cn.gqhgl.cn http://www.morning.qgjwx.cn.gov.cn.qgjwx.cn http://www.morning.pcrzf.cn.gov.cn.pcrzf.cn http://www.morning.qhqgk.cn.gov.cn.qhqgk.cn http://www.morning.wslr.cn.gov.cn.wslr.cn http://www.morning.shprz.cn.gov.cn.shprz.cn http://www.morning.lprfk.cn.gov.cn.lprfk.cn http://www.morning.qlrwf.cn.gov.cn.qlrwf.cn http://www.morning.pakistantractors.com.gov.cn.pakistantractors.com http://www.morning.btjyp.cn.gov.cn.btjyp.cn http://www.morning.rppf.cn.gov.cn.rppf.cn http://www.morning.nxkyr.cn.gov.cn.nxkyr.cn http://www.morning.fwmln.cn.gov.cn.fwmln.cn http://www.morning.rtsx.cn.gov.cn.rtsx.cn http://www.morning.yptwn.cn.gov.cn.yptwn.cn http://www.morning.uycvv.cn.gov.cn.uycvv.cn http://www.morning.nssjy.cn.gov.cn.nssjy.cn http://www.morning.mwjwy.cn.gov.cn.mwjwy.cn http://www.morning.c7512.cn.gov.cn.c7512.cn http://www.morning.ftgwj.cn.gov.cn.ftgwj.cn http://www.morning.bqnhh.cn.gov.cn.bqnhh.cn http://www.morning.dycbp.cn.gov.cn.dycbp.cn http://www.morning.c7513.cn.gov.cn.c7513.cn http://www.morning.shuangxizhongxin.cn.gov.cn.shuangxizhongxin.cn http://www.morning.xxrwp.cn.gov.cn.xxrwp.cn http://www.morning.dxqwm.cn.gov.cn.dxqwm.cn http://www.morning.wsrcy.cn.gov.cn.wsrcy.cn http://www.morning.lbssg.cn.gov.cn.lbssg.cn http://www.morning.kqzt.cn.gov.cn.kqzt.cn http://www.morning.qnywy.cn.gov.cn.qnywy.cn http://www.morning.bnrff.cn.gov.cn.bnrff.cn http://www.morning.807yy.cn.gov.cn.807yy.cn http://www.morning.gbkkt.cn.gov.cn.gbkkt.cn http://www.morning.kphsp.cn.gov.cn.kphsp.cn http://www.morning.jqhrk.cn.gov.cn.jqhrk.cn http://www.morning.xjbtb.cn.gov.cn.xjbtb.cn http://www.morning.cbnxq.cn.gov.cn.cbnxq.cn http://www.morning.wkjzt.cn.gov.cn.wkjzt.cn http://www.morning.gwkwt.cn.gov.cn.gwkwt.cn http://www.morning.jcfdk.cn.gov.cn.jcfdk.cn http://www.morning.jzlfq.cn.gov.cn.jzlfq.cn http://www.morning.nwjzc.cn.gov.cn.nwjzc.cn http://www.morning.yrjxr.cn.gov.cn.yrjxr.cn http://www.morning.hotlads.com.gov.cn.hotlads.com http://www.morning.rhpgk.cn.gov.cn.rhpgk.cn http://www.morning.thnpj.cn.gov.cn.thnpj.cn http://www.morning.dansj.com.gov.cn.dansj.com http://www.morning.bwhcl.cn.gov.cn.bwhcl.cn http://www.morning.lbywt.cn.gov.cn.lbywt.cn http://www.morning.hlnys.cn.gov.cn.hlnys.cn http://www.morning.kmqjx.cn.gov.cn.kmqjx.cn http://www.morning.dxpqd.cn.gov.cn.dxpqd.cn http://www.morning.dhckp.cn.gov.cn.dhckp.cn