欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

介绍一个简单的JavaScript类框架

程序员文章站 2023-10-26 20:32:16
 在写work-in-progress javascript book一书时,对于javascript继承体系,我花费了相当的时间,并在该过程中研究了各种不同的模...

 在写work-in-progress javascript book一书时,对于javascript继承体系,我花费了相当的时间,并在该过程中研究了各种不同的模拟经典类继承的方案。这些技术方案中,我最为推崇的是base2与prototype的实现。

从这些方案中,应该能提炼出一个具有其思想内涵的框架,该框架须具有简单、可重用、易于理解并无依赖等特点,其中简单性与可用性是重点。以下是使用示例:
 

var person = class. extend ( {
 init: function (isdancing ) {
  this. dancing = isdancing;
 },
 dance: function ( ) {
  return this. dancing;
 }
} );
var ninja = person.extend({
 init: function(){
  this._super( false );
 },
 dance: function(){
  // call the inherited version of dance()
  return this._super();
 },
 swingsword: function(){
  return true;
 }
});
var p = new person(true);
p.dance(); // => true
var n = new ninja();
n.dance(); // => false
n.swingsword(); // => true
// should all be true
p instanceof person && p instanceof class &&
n instanceof ninja && n instanceof person && n instanceof class

 

有几点需要留意:

  •     构造函数须简单(通过init函数来实现),
  •     新定义的类比须继承于已有的类,
  •     所有的‘类'都继承于始祖类:class,因此如果要创建一个全新的类,该类必须为class的子类,
  •     最具挑战的一点:父类的被覆写方法必须能访问到(通过配置上下文环境)。
  •     在上面的示例中,你能发现通过this._super()来调用person父类的init()和dance()方法。

对结果相当满意:使类的定义结构化,保持单一继承,并且能够调用超类方法。

简单的类创建与继承

下面为其实现(便于阅读并有注释),大概25行左右。欢迎并感谢提出建议。
 

/* simple javascript inheritance
 * by john resig http://ejohn.org/
 * mit licensed.
 */
// inspired by base2 and prototype
( function ( ) {
 var initializing = false, fntest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;
 // the base class implementation (does nothing)
 this.class = function(){};
  
 // create a new class that inherits from this class
 class.extend = function(prop) {
  var _super = this.prototype;
   
  // instantiate a base class (but only create the instance,
  // don't run the init constructor)
  initializing = true;
  var prototype = new this();
  initializing = false;
   
  // copy the properties over onto the new prototype
  for (var name in prop) {
   // check if we're overwriting an existing function
   prototype[name] = typeof prop[name] == "function" &&
    typeof _super[name] == "function" && fntest.test(prop[name]) ?
    (function(name, fn){
     return function() {
      var tmp = this._super;
       
      // add a new ._super() method that is the same method
      // but on the super-class
      this._super = _super[name];
       
      // the method only need to be bound temporarily, so we
      // remove it when we're done executing
      var ret = fn.apply(this, arguments);    
      this._super = tmp;
       
      return ret;
     };
    })(name, prop[name]) :
    prop[name];
  }
   
  // the dummy class constructor
  function class() {
   // all construction is actually done in the init method
   if ( !initializing && this.init )
    this.init.apply(this, arguments);
  }
   
  // populate our constructed prototype object
  class.prototype = prototype;
   
  // enforce the constructor to be what we expect
  class.prototype.constructor = class;
  // and make this class extendable
  class.extend = arguments.callee;
   
  return class;
 };
})();

其中  “初始化(initializing/don't call init)”与“创建_super方法”最为棘手。接下来,我会对此做简要的介绍,使得大家对其实现机制能更好的理解。

初始化

    为了说明函数原型式的继承方式,首先来看传统的实现过程,即将子类的prototype属性指向父类的一个实例。如下所示:

 

function person ( ) { }
function ninja ( ) { }
ninja. prototype = new person ( );
// allows for instanceof to work:
(new ninja()) instanceof person

然而,这里具有挑战性的一点,便是我们只想要得到‘是否实例(instatnceof)'的效果,而不需要实例一个 person并调用其构造函数所带来的后果。为防止这一点,在代码中设置一个bool参数initializing,只有在实例化父类并将其配置到子类的prototype属性时, 其值才为true。这样处理的目的是区分开真正的实例化与设计继承时这两种调用构造函数之间的区别,进而在真正实例化时调用init方法:
 

if ( !initializing )
 this.init.apply(this, arguments);

    值得特别注意的是,因为在init函数中可能会运行相当费资源的代码(如连接服务器,创建dom元素等,谁也无法预测),所以做出区分是完全必要的。

超类方法(super method)

当使用继承时,最常见的需求便是子类能访问超类被覆写的方法。在该实现下,最终的方案便是提供一个临时方法(._super),该方法指向超类方法,并且只能在子类方法中访问。
 

var person = class. extend ( {
 init: function (isdancing ) {
  this. dancing = isdancing;
 }
} );
var ninja = person.extend({
 init: function(){
  this._super( false );
 }
});
var p = new person(true);
p.dancing; // => true
var n = new ninja();
n.dancing; // => false


实现这一功能需要几步处理。首先,我们使用extend来合并基本的person实例(类实例,上面我们提到过其构造过程)与字面对象(person.extend()的函数参数)。在合并过程中,做了简单的检查:首先检查将被合并的的属性是否为函数,如为函数,然后检查将被覆写的超类属性是否也为函数?如果这两个检查都为true,则需要为该属性准备_super方法。

注意,在这里创建了一个匿名闭包(返回的是函数对象)来封装增加的super方法。基于维护运行环境的需要,我们应该将旧的this._super(不管其是否存在)保存起来以备函数运行后重置,这有助于在有相同名称(不想偶然丢失对象指针)的情况下发生不可预知的问题。

然后,创建新的_super方法,该方法对象仅指向超类中被覆写的方法。谢天谢地,不用对_super做任何改动或变更作用域,因为函数的执行环境会随着函数调用对象自动变更(指针this会指向超类).

最后,调用字面量对象的方法,方法执行中可能会使用this._super(),方法执行后,将属性_super重置回其原来状态,之后return退出函数。


以上可以有许多种方案能达到相同的效果(我之前曾见过将super绑定到其自身,然后用arguments.callee访问),但是感觉还是这种方法最能能体现可用性与简洁性的特点。

在我已完成的多个基于javascript原型的工作中,只有这个类继承实现方案是我发表出来与大家分享的。我认为,简洁的代码(易于学习,易于继承,更少下载)更需要提出来让大家探讨,因此,对于学习javascript类构造与继承的人们来说,这套实现方案是一个好的开始。