当前位置: 代码迷 >> JavaScript >> Javascript实现super()。解决思路
  详细解决方案

Javascript实现super()。解决思路

热度:429   发布时间:2013-11-09 17:06:34.0
Javascript实现super()。
近日比较蛋疼,突然想起Java中的super很好用,心血来潮就用js模拟了下,欢迎拍砖。(注:由于super是js保留字,所有使用mysuper作为函数名。)
		Object.prototype.mysuper = function(){
var caller = arguments.callee.caller,
name;
for(var i in this){
if(this[i] === caller){
name = i;
break;
}
}
__proto = this.__proto__ || this.constructor.prototype;
return __proto[name]();
}
function Class(){
this.name = "class";
this.setName = function(name){
this.name = name;
}
this.getName = function(){
return this.name;
}
}
function Test(){
this.getName = function(){
return 'sub-' +  this.mysuper();
}
}
Test.prototype = new Class();
Test.prototype.constructor = Test;

var a = new Test();
alert(a.getName());

------解决方案--------------------
引用:
心血来潮随手写的,肯定有bug,就没人拍砖吗。。


想法不错。

js实现面向对象编程模式,其中就需要定义关键字super。

给你看一段代码:实现了super关键字

Fan.package('Fan.test'); // 创建一个包

                // 创建类
Fan.clazz('Fan.test.A', function(){
                      var a = null; // 私有属性

                      this.aa = null; // 共有属性
                      
                      // 构造方法
      this.A = function(_a){
          $super(); // 调用父类构造方法
                          a = _a;
      };

      this.init = function(){
       alert2('A:init');
         };
      this.initEvent = function(){
          alert2('A:initEvent');
          this.show(1);
         };
      this.show = function(){
       alert2('Fan.test.A');
      };
  });

           // 创建类B,继承A
   Fan.clazz('Fan.test.B', Fan.test.A, function(){
       this.B = function(a, b){
           $super(a); // 调用父类构造器,并传参数
       };
       this.init = function(){
        alert2('B:init');
               $super.init.call(this); // 调用父类方法
           };
           this._initEvent = function(){
            alert2('B:initEvent');
               $super.initEvent.call(this); // 调用父类方法
           };
       this.show = function(){
        alert2('Fan.test.B');
       };
   });
   
           // 创建C,继承B
   Fan.clazz('Fan.test.C', Fan.test.B, function(){
           // 当没有提供构造方法时,默认存在一个构造方法,且构造方法中只有一句代码$super();
           //this.C = function(){
           //    $super();
           //};
           this.init = function(){
            alert2('C:init');
  相关解决方案