码迷,mamicode.com
首页 > Web开发 > 详细

js中的prototype

时间:2017-10-19 10:31:36      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:name   chinese   引用   prot   ndk   运行时   调用   运行   同名   

原型法的主要思想是,现在有1个类A,我想要创建一个类B,这个类是以A为原型的,并且能进行扩展。我们称B的原型为A。

javascript的方法可以分为三类:

a 类方法

b 对象方法

c 原型方法

例:function People(name){

  this.name=name;
  //对象方法
  this.Introduce=function(){
    alert("My name is "+this.name);
  }
}
//类方法
People.Run=function(){
  alert("I can run");
}
//原型方法
People.prototype.IntroduceChinese=function(){
  alert("我的名字是"+this.name);
}
 
//测试
var p1=new People("Windking");
p1.Introduce();
People.Run();
p1.IntroduceChinese(); 

 

prototype是什么含义?

javascript中的每个对象都有prototype属性,Javascript中对象的prototype属性的解释是:返回对象类型原型的引用。

A.prototype = new B();

理解prototype不应把它和继承混淆。A的prototype为B的一个实例,可以理解A将B中的方法和属性全部克隆了一遍。A能使用B的方法和属性。这里强调的是克隆而不是继承。可以出现这种情况:A的prototype是B的实例,同时B的prototype也是A的实例。

如果extendClass中本身包含有一个与baseClass的方法同名的方法,函数运行时会先去本体的函数中去找,如果找到则运行,找不到则去prototype中寻找函数。或者可以理解为prototype不会克隆同名函数。

如果想使用extendClass的一个实例instance调用baseClass的对象方法showMsg,可以使用call:

extendClass.prototype = new baseClass();
var instance = new extendClass();
var baseinstance = new baseClass();
baseinstance.showMsg.call(instance);//显示baseClass::showMsg

这里的baseinstance.showMsg.call(instance);阅读为“将instance当做baseinstance来调用,调用它的对象方法showMsg”

baseClass.showMsg.call(instance)表示类方法,baseinstance.showMsg.call(instance)调用的是baseClass的对象方法

 

理解清晰了下面这段代码,就表示已经理解这篇文章了:

function baseClass(){
this.showMsg = function(){
alert("baseClass::showMsg");
}

this.baseShowMsg = function(){
alert("baseClass::baseShowMsg");
}
}
baseClass.showMsg = function(){
alert("baseClass::showMsg static");
}

function extendClass(){
this.showMsg =function (){
alert("extendClass::showMsg");
}
}
extendClass.showMsg = function(){
alert("extendClass::showMsg static")
}

extendClass.prototype = new baseClass();
//extendClass是以baseClass的一个实例为原型克隆创建的
var instance = new extendClass();

instance.showMsg(); //显示extendClass::showMsg
instance.baseShowMsg(); //显示baseClass::baseShowMsg
instance.showMsg(); //显示extendClass::showMsg

// 使用extendClass的一个实例instance调用baseClass的对象方法showMsg
// 将instance当做baseClass来调用,调用它的对象方法showMsg
baseClass.showMsg.call(instance);//显示baseClass::showMsg static

var baseinstance = new baseClass();
baseinstance.showMsg.call(instance);//显示baseClass::showMsg

js中的prototype

标签:name   chinese   引用   prot   ndk   运行时   调用   运行   同名   

原文地址:http://www.cnblogs.com/hmycheryl/p/7690817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!