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

js面向对象程序设置——继承机制

时间:2015-04-28 12:06:00      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:js面向对象程序设置——继承机制

//继承
        //1、对象冒充
        
    /*     function ClassA(sColor) {
            this.color = sColor;
            this.sayColor = function () {
                alert(this.color);
            };
        }
        
        function ClassB(sColor, sName) {
            this.newMethod = ClassA;
            this.newMethod(sColor);
            delete this.newMethod;
        
            this.name = sName;
            this.sayName = function () {
                alert(this.name);
            };
        }
        
        var objA = new ClassA("blue");
        var objB = new ClassB("red", "John");
        objA.sayColor();    //输出 "blue"
        objB.sayColor();    //输出 "red"
        objB.sayName();        //输出 "John"  */
        
        //2、call方法,A.call(B,...);A,表示父类,B,表示子类。第二个参数后表示传给父类的参数
        
        //2.1、给一个对象加方法
        
        /* function sss(aa){
            alert(aa);
        }
        
        var obj=new Object();
        obj.obj111="23545";
        sss.call(obj,"yellow");
         */
        
         //2.2、对象继承对象
         /* function ClassA(sColor) {
            this.color = sColor;
            this.sayColor = function () {
                alert(this.color);
            };
        }
        
        function ClassB(sColor, sName) {
            ClassA.call(this, sColor);
            this.name = sName;
            this.sayName = function () {
                alert(this.name);
            };
        }
        
        var clsB=new ClassB("blue","adfadf");
        clsB.sayColor(); */
        
        //3、apply方法,A.apply(B,...);A,表示父类,B,表示子类。第二个参数后表示传给父类的参数,
        //参数为array类型
        
        //3.1、对象添加方法
        /* function aaa(aaa){
            alert("aaaa"+aaa);
        }
        
        var obj=new Object();
        obj.name="2343";
        
        aaa.apply(obj,new Array("---bbb")); */
        
        //3.2、对象继承对象
        /* function ClassA(name){
            this.name=name;
            this.showName=function(){
                alert(this.name);
            };
        }
        
        function ClassB(name){
            this.nameb=name;
            this.aaa=ClassA;
            this.aaa.apply(this,new Array(this.nameb));
            
            this.showName1=function(){
                alert(this.nameb+"...bbbbb");
            };
        }
        
        var bbb=new ClassB("ccc");
        bbb.showName();
        bbb.showName1(); */

js面向对象程序设置——继承机制

标签:js面向对象程序设置——继承机制

原文地址:http://cbg23.blog.51cto.com/7201812/1639576

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