码迷,mamicode.com
首页 > 数据库 > 详细

[DBW]一个小巧的Class方案

时间:2016-11-29 14:52:03      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:死循环   div   tor   name   win   cti   common   img   ons   

技术分享
(function(){
    function Extend(func,proto){
        func.prototype.__proto__=proto.prototype;
        Object.defineProperty(func.prototype,"proto",{
            value: proto.prototype
        });
    }
    function Super(func,method){
        if(!method) method=‘constructor‘;
        return func.prototype.__proto__[method];
    }
    window.Extend=Extend;
    window.Super=Super;
})();
技术分享

在处理super的super时候遇到了死循环:

this.super-->this.proto.constructor(){this.super}-->this.proto.constructor。。。

后来直接用了上面代码中的办法,不想整得太复杂(就是不会。。。)

技术分享
(function(){
    function AAA(name){
        this.name=name;
    }
    function BBB(name){
        Super(BBB).call(this,name);
    }
    Extend(BBB,AAA);
    function CCC(name,age){
        Super(CCC).call(this,name);
        this.age=age;
    }
    Extend(CCC,BBB);
    var c=new CCC(‘ccc‘,18);
    console.log(c);
})();
技术分享

然后不想污染Function,只能污染window了。。。

话说放在Function里面是不是要好用些?

技术分享
(function(){
    Function.prototype.Extend=function(proto){
        this.prototype.__proto__=proto.prototype;
    }
    Function.prototype.Super=function(method){
        if(!method) method=‘constructor‘;
        return this.prototype.__proto__[method];
    }
})();
(function(){
    function AAA(name){
        this.name=name;
    }
    function BBB(name){
        BBB.Super().call(this,name);
    }
    BBB.Extend(AAA);
    function CCC(name,age){
        CCC.Super().call(this,name);
        this.age=age;
    }
    CCC.Extend(BBB);
    var c=new CCC(‘ccc‘,18);
    console.log(c);
})();
技术分享

[DBW]一个小巧的Class方案

标签:死循环   div   tor   name   win   cti   common   img   ons   

原文地址:http://www.cnblogs.com/x-poior/p/6113193.html

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