`

javascript继承

 
阅读更多

类继承

类型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设计模式》第四章继承与封装中提到:与原型式继承相比,在类式继承方式中创建的每一个对象在内存中都有自己的一套属性。可是从(类继承)的实例中,看到的意识共享属性啊,这是为什么呐?这句话有什么深切的含义???

  • 大小: 58.3 KB
  • 大小: 61.3 KB
  • 大小: 16.1 KB
分享到:
评论

相关推荐

    JavaScript继承

    除了传统的原型链继承,JavaScript还支持其他继承模式,如组合继承(组合使用构造函数和原型链)、寄生继承(通过创建父类副本改进继承)、原型式继承(使用`Object.create()`)、寄生组合式继承(被认为是最有效的...

    JavaScript继承机制研究.pdf

    JavaScript继承机制研究 在本文中,我们将深入探讨JavaScript继承机制的实现方式,并对基于原型的继承、构造函数方式继承、组合继承、寄生式继承等继承机制进行了总结归纳和分析。 基于原型的继承 JavaScript是...

    详解Javascript继承的实现

    本文将深入探讨JavaScript继承的实现方式,以及其中的问题和解决方案。 首先,我们来看混合方式的实现,这种方式结合了原型链和对象冒充。在JavaScript中,构造函数是用于创建特定类型对象的函数。例如,`Employee`...

    JavaScript继承的特性与实践应用深入详解

    这里我们将深入探讨JavaScript继承的特性以及实践应用。 首先,JavaScript的继承基于原型链。每个对象都有一个`__proto__`属性,指向创建它的构造函数的原型对象。当试图访问对象的一个属性时,JavaScript会沿着...

    史上最为详细的javascript继承(推荐)

    JavaScript 继承是面向对象编程中的关键概念,它允许创建基于现有对象的新对象,从而能够复用和扩展已有功能。本文将深入探讨JavaScript中的几种继承方式,包括它们的基本原理、优缺点以及适用场景。 首先,原型链...

    javascript继承的六大模式小结

    本文将深入探讨JavaScript继承的六大模式:原型链、借用构造函数、组合继承、原型式继承、寄生式继承以及寄生组合式继承。 1. **原型链** 原型链是JavaScript中最基础的继承方式,通过原型对象的引用实现。每个...

    JavaScript 继承详解(六)

    在本章中,我们将分析Prototypejs中关于JavaScript继承的实现。 Prototypejs是最早的JavaScript类库,可以说是JavaScript类库的鼻祖。 我在几年前接触的第一个JavaScript类库就是这位,因此Prototypejs有着广泛的...

    javascript继承之为什么要继承.docx

    JavaScript 继承之为什么要继承 JavaScript 中的继承机制是指子类继承父类的属性和方法,使得子类可以拥有父类的所有特征。继承是面向对象编程的基本机制之一,它可以实现代码复用、提高编程效率和增强代码的可维护...

    JavaScript继承机制探讨及其应用.pdf

    JavaScript继承机制探讨及其应用 JavaScript是一门弱类型语言,具有函数式编程和面向对象编程的特点。随着近几年JavaScript生态圈的发展和成熟,项目的编码量和复杂度也在呈几何级数增长。JavaScript面向对象编程中...

    JavaScript继承与多继承实例分析.docx

    1. **JavaScript继承** - **原理**:JavaScript的继承主要是通过原型链(prototype chain)来实现的。每个JavaScript对象都有一个内部属性[[Prototype]],通常可以通过`__proto__`访问,或通过`Object....

    Javascript继承[参考].pdf

    在深入理解JavaScript继承之前,我们需要掌握几个核心概念:父类(也称作超类)是指被继承的类,子类是通过继承父类得到的类,抽象类通常不用于实例化,而是作为其他类继承的基础,基类是提供给其他类继承的类,派生...

    【JavaScript源代码】JavaScript继承的三种方法实例.docx

    ### JavaScript继承的三种方法实例详解 #### 一、概述 在JavaScript中,虽然原生语言层面没有提供传统意义上的“类”这一概念,但它通过构造函数和原型链等机制实现了类的功能,尤其是继承这一核心概念。继承是...

    详解Javascript继承的实现_.docx

    本文将深入探讨JavaScript继承的实现,并分析其潜在的问题和解决方案。 首先,我们来看混合方式的实现,这是一种常见的继承策略,结合了原型链和构造函数继承。在JavaScript中,对象的属性和方法可以通过原型链进行...

    13、JavaScript继承实现(二) —— zInherit、xbObjects

    zInherit是一种常用的JavaScript继承实现方式,它通过修改对象的`__proto__`属性来实现继承。`__proto__`指向父对象的原型,从而使得子对象能够访问父对象的属性和方法。但是,`__proto__`并不是所有浏览器都支持的...

    JavaScript 继承的实现

    JavaScript继承的实现方式多样,除了原型链之外,还有如下几种常见方式: 1. **构造函数继承**:通过调用父构造函数来初始化子对象,但不能避免方法重复。 2. **原型链继承**:通过修改子构造函数的原型使其指向父...

    javascript继承实例

    本篇文章将深入探讨JavaScript继承的实例,以及如何通过继承来提高代码的可维护性和效率。 首先,我们需要了解JavaScript中的原型(prototype)机制。每个JavaScript对象都有一个内部属性[[Prototype]],通常通过`_...

Global site tag (gtag.js) - Google Analytics