博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS —— 圣杯模式(原型链继承)
阅读量:5214 次
发布时间:2019-06-14

本文共 651 字,大约阅读时间需要 2 分钟。

//  圣杯模式        //  为了son继承father原型上的东西,还可以修改自己原型上的东西,对father原型不影响。        function inherit(Target,Origin){             function F (){};// 函数F作为一个中间层,上连father,下连Son,使两函数互不干扰            F.prototype = Origin.prototype;            Target.prototype = new F();            Target.prototype.constuctor = Target;            // son原型归位            Target.prototype.uber = Origin.prototype;        }        Father.prototype.lastName = "Deng";        function Father(){}        function Son(){}        inherit(Son,Father);        // 运行函数,形参实参相统一        var son = new Son();        var father = new Father();

 

转载于:https://www.cnblogs.com/yangpeixian/p/11519325.html

你可能感兴趣的文章
CSS背景颜色、背景图片、平铺、定位、固定
查看>>
口胡:[HNOI2011]数学作业
查看>>
我的第一个python web开发框架(29)——定制ORM(五)
查看>>
Combination Sum III -- leetcode
查看>>
中国剩余定理
查看>>
基础笔记一
查看>>
uva 10137 The trip
查看>>
spring 解决中文乱码问题
查看>>
hdu 4268
查看>>
启动tomcat时cmd窗口一闪而过
查看>>
两个有序数列,求中间值 Median of Two Sorted Arrays
查看>>
vue路由的实现原理
查看>>
Java核心技术:Java异常处理
查看>>
Python 学习笔记一
查看>>
引入列表,将对话分类添加到对应列表中
查看>>
回文子串
查看>>
Count Numbers
查看>>
React——JSX
查看>>
编写高质量代码改善C#程序的157个建议——建议110:用类来代替enum
查看>>
最大公约数求解
查看>>