- 浏览: 47161 次
- 性别:
- 来自: 北京
文章分类
最新评论
类继承
类型1:extend
function extend(subClass, superClass) { var F = function() { }; F.prototype = superClass.prototype; subClass.prototype = new F(); subClass.prototype.constructor = subClass; }
类型2:extendOther
function extendOther(subClass, superClass) { subClass.prototype = new superClass(); subClass.prototype.constructor = subClass; }
举例:extend
function SuperType() { this.property = true; this.property1 = true; this.property2 = true; this.property3 = true; this.property4 = true; this.property5 = true; this.property6 = true; this.property7 = true; this.property8 = true; /*SuperType.prototype.getSuperV = function() { return this.property; }*/ } SuperType.prototype.getSuperV1 = function() { return this.property; } function SubType() { this.subproperty = false; } SubType.prototype.getSubV = function() { return this.subproperty; } SubType.prototype.getSuperV = function() { return this.subproperty; } extend(SubType, SuperType); //extendOther(SubType, SuperType); var ins = new SubType();
改写为:extendOther
function SuperType() { this.property = true; this.property1 = true; this.property2 = true; this.property3 = true; this.property4 = true; this.property5 = true; this.property6 = true; this.property7 = true; this.property8 = true; /*SuperType.prototype.getSuperV = function() { return this.property; }*/ } SuperType.prototype.getSuperV1 = function() { return this.property; } function SubType() { this.subproperty = false; } SubType.prototype.getSubV = function() { return this.subproperty; } SubType.prototype.getSuperV = function() { return this.subproperty; } //extend(SubType, SuperType); extendOther(SubType, SuperType); var ins = new SubType();
结果对比:
去掉如下代码的注释:
SuperType.prototype.getSuperV = function() { return this.property; }
extend继承较extendOther继承改进之处:
它添加了一个空函数F,并将用它创建的一个对象实例插入原型链中。这样做可以避免创建超类的新实例,因为它可能会比较庞大,而且有时超累的构造函数有一些副作用,或者会执行一些需要进行大量计算的任务。
如果想在子类中直接调用超类中的方法,可以作如下改进:
//子类可以访问父类的方法 subClass.superclass = superClass.prototype; if(superClass.prototype.constructor == Object.prototype.constructor) { superClass.prototype.constructor = superClass; }
实例1:用extend的场合:
function extend(subClass, superClass) { var F = function() { }; F.prototype = superClass.prototype; subClass.prototype = new F(); subClass.prototype.constructor = subClass; //子类可以访问父类的方法 subClass.superclass = superClass.prototype; if(superClass.prototype.constructor == Object.prototype.constructor) { superClass.prototype.constructor = superClass; } } function SuperType() { this.property = true; this.property1 = true; this.property2 = true; this.property3 = true; this.property4 = true; this.property5 = true; this.property6 = true; this.property7 = true; this.property8 = true; SuperType.prototype.getSuperInner = function() { return "getSuperInner"; } } SuperType.prototype.getSuperV = function() { return this.property; } SuperType.prototype.getSuperV1 = function() { return this.property; } function SubType() { //用来将SuperType的实例property~property8实例化到SubType的实例中 SubType.superclass.constructor.call(this); this.subproperty = false; } extend(SubType, SuperType); SubType.prototype.getSubV = function() { return this.subproperty; } SubType.prototype.getSuperV = function() { return this.subproperty; } SubType.prototype.getName = function() { console.log("superType.property:"+SubType.superclass.getSuperV.call(this)); console.log("subType.property:"+SubType.prototype.getSuperV.call(this));//console.log("subType.property:"+this.getSuperV()); /*输出结果为: superType.property:true subType.property:false */ }; var ins = new SubType(); ins.getName();
实例2:用extendOther的场合
function extendOther(subClass, superClass) { subClass.prototype = new superClass(); subClass.prototype.constructor = subClass; //子类可以访问父类的方法 subClass.superclass = superClass.prototype; if(superClass.prototype.constructor == Object.prototype.constructor) { superClass.prototype.constructor = superClass; } } function SuperType() { this.property = true; this.property1 = true; this.property2 = true; this.property3 = true; this.property4 = true; this.property5 = true; this.property6 = true; this.property7 = true; this.property8 = true; SuperType.prototype.getSuperInner = function() { return "getSuperInner"; } } SuperType.prototype.getSuperV = function() { return this.property; } SuperType.prototype.getSuperV1 = function() { return this.property; } function SubType() { //用来将SuperType的实例property~property8实例化到SubType的实例中 //SubType.superclass.constructor.call(this); this.subproperty = false; } extendOther(SubType, SuperType); SubType.prototype.getSubV = function() { return this.subproperty; } SubType.prototype.getSuperV = function() { return this.subproperty; } SubType.prototype.getName = function() { console.log("superType.property:"+SubType.superclass.getSuperV.call(this)); console.log("subType.property:"+SubType.prototype.getSuperV.call(this));//console.log("subType.property:"+this.getSuperV()); /*输出结果为: superType.property:true subType.property:false */ }; var ins = new SubType(); ins.getName();
原型式继承
function clone(object) { function F() { }; F.prototype = object; return new F; } var SuperType = { property8 : ['a','b','c'], configure : function() { this.property = true; this.property1 = true; this.property2 = true; this.property3 = true; this.property4 = true; this.property5 = true; this.property6 = true; this.property7 = ['1','2','3']; }, getSuperInner : function() { console.log(this); console.log("this.property7:"+this.property7); console.log("this.property8:"+this.property8); return this.property; } } var subType = clone(SuperType); subType.configure(); subType.getSuperInner(); var subType1 = clone(SuperType); subType1.configure(); subType1.getSuperInner(); subType.property7.push('4'); subType.property8.push('dfef'); subType.getSuperInner(); subType1.getSuperInner();
运行结果
注意:
如果想设置property~property7的值需要调用configure方法。
property~property7属于F,即Clone后的对象
property8属于父对象。所以同时对property7和property8进行修改,输出结果的原理是不同的。
property8体现了原型式继承的优点:原型式继承更能节约内存。原型链读取成员的方式使所有克隆出来的对象共享每个属性和方法的唯一一份实例。只有在直接设置了某个克隆对象的属性和方法时,情况才会有所变化。详细内容请参考《javascript设计模式》第四章继承与封装
疑问:
《javascript设计模式》第四章继承与封装中提到:与原型式继承相比,在类式继承方式中创建的每一个对象在内存中都有自己的一套属性。可是从(类继承)的实例中,看到的意识共享属性啊,这是为什么呐?这句话有什么深切的含义???
发表评论
-
es6
2016-07-25 17:11 01.export default 不用关系模块输出了什么 ... -
immutable
2016-07-21 17:23 0作者:张克军链接:ht ... -
react
2016-07-08 16:02 0中文文档:http://reactjs.cn/react/ ... -
redux
2016-07-07 15:30 0redux例子counter总结: action:描述发 ... -
angular遇到的问题
2016-03-17 18:53 0Form Validation and fields add ... -
http2
2015-12-22 13:10 0http2资料: http://http2-explai ... -
iconfont的蜕化操作
2015-11-09 16:27 0转自:http://www.cnblogs. ... -
flux
2015-10-19 14:03 0转自:http://www.csdn.net/articl ... -
setTransform
2015-10-15 17:30 0转自:http://book.51cto.co ... -
遇到的问题
2014-12-19 14:37 0http://stackoverflow.com/questi ... -
node安装(windows)
2014-09-14 10:43 0Windows平台下的node.js安装 直接去node ... -
jQuery.Callbacks之demo
2014-08-30 10:56 0jQuery.Callbacks是jquery在1.7版本 ... -
使用proxy改变js上下文
2014-03-27 21:48 0<body> <div id=& ... -
num
2014-01-14 17:31 0$("input[type=text][imemo ... -
js插件模板
2014-01-05 12:36 0(function(){ function Guid ... -
jquery中的this
2013-06-26 21:42 0jQuery.fn.test2= function() ... -
SeaJS与RequireJS最大的区别
2013-06-21 08:43 0SeaJS与RequireJS最大的区别 转自:h ... -
快速排序
2013-06-16 17:35 0快速排序: 设要排序的数组是A[0]……A[N-1],首先 ... -
autocomplete/suggest
2013-06-07 15:05 0<!DOCTYPE html PUBLIC & ... -
typeof
2013-06-06 08:35 0console.log(typeof ([])) //obj ...
相关推荐
除了传统的原型链继承,JavaScript还支持其他继承模式,如组合继承(组合使用构造函数和原型链)、寄生继承(通过创建父类副本改进继承)、原型式继承(使用`Object.create()`)、寄生组合式继承(被认为是最有效的...
JavaScript继承机制研究 在本文中,我们将深入探讨JavaScript继承机制的实现方式,并对基于原型的继承、构造函数方式继承、组合继承、寄生式继承等继承机制进行了总结归纳和分析。 基于原型的继承 JavaScript是...
本文将深入探讨JavaScript继承的实现方式,以及其中的问题和解决方案。 首先,我们来看混合方式的实现,这种方式结合了原型链和对象冒充。在JavaScript中,构造函数是用于创建特定类型对象的函数。例如,`Employee`...
这里我们将深入探讨JavaScript继承的特性以及实践应用。 首先,JavaScript的继承基于原型链。每个对象都有一个`__proto__`属性,指向创建它的构造函数的原型对象。当试图访问对象的一个属性时,JavaScript会沿着...
JavaScript 继承是面向对象编程中的关键概念,它允许创建基于现有对象的新对象,从而能够复用和扩展已有功能。本文将深入探讨JavaScript中的几种继承方式,包括它们的基本原理、优缺点以及适用场景。 首先,原型链...
本文将深入探讨JavaScript继承的六大模式:原型链、借用构造函数、组合继承、原型式继承、寄生式继承以及寄生组合式继承。 1. **原型链** 原型链是JavaScript中最基础的继承方式,通过原型对象的引用实现。每个...
在本章中,我们将分析Prototypejs中关于JavaScript继承的实现。 Prototypejs是最早的JavaScript类库,可以说是JavaScript类库的鼻祖。 我在几年前接触的第一个JavaScript类库就是这位,因此Prototypejs有着广泛的...
JavaScript 继承之为什么要继承 JavaScript 中的继承机制是指子类继承父类的属性和方法,使得子类可以拥有父类的所有特征。继承是面向对象编程的基本机制之一,它可以实现代码复用、提高编程效率和增强代码的可维护...
JavaScript继承机制探讨及其应用 JavaScript是一门弱类型语言,具有函数式编程和面向对象编程的特点。随着近几年JavaScript生态圈的发展和成熟,项目的编码量和复杂度也在呈几何级数增长。JavaScript面向对象编程中...
1. **JavaScript继承** - **原理**:JavaScript的继承主要是通过原型链(prototype chain)来实现的。每个JavaScript对象都有一个内部属性[[Prototype]],通常可以通过`__proto__`访问,或通过`Object....
在深入理解JavaScript继承之前,我们需要掌握几个核心概念:父类(也称作超类)是指被继承的类,子类是通过继承父类得到的类,抽象类通常不用于实例化,而是作为其他类继承的基础,基类是提供给其他类继承的类,派生...
### JavaScript继承的三种方法实例详解 #### 一、概述 在JavaScript中,虽然原生语言层面没有提供传统意义上的“类”这一概念,但它通过构造函数和原型链等机制实现了类的功能,尤其是继承这一核心概念。继承是...
本文将深入探讨JavaScript继承的实现,并分析其潜在的问题和解决方案。 首先,我们来看混合方式的实现,这是一种常见的继承策略,结合了原型链和构造函数继承。在JavaScript中,对象的属性和方法可以通过原型链进行...
zInherit是一种常用的JavaScript继承实现方式,它通过修改对象的`__proto__`属性来实现继承。`__proto__`指向父对象的原型,从而使得子对象能够访问父对象的属性和方法。但是,`__proto__`并不是所有浏览器都支持的...
JavaScript继承的实现方式多样,除了原型链之外,还有如下几种常见方式: 1. **构造函数继承**:通过调用父构造函数来初始化子对象,但不能避免方法重复。 2. **原型链继承**:通过修改子构造函数的原型使其指向父...
本篇文章将深入探讨JavaScript继承的实例,以及如何通过继承来提高代码的可维护性和效率。 首先,我们需要了解JavaScript中的原型(prototype)机制。每个JavaScript对象都有一个内部属性[[Prototype]],通常通过`_...