首页 > Web开发 > 详细

javascriptMVC框架面向对象编程

时间:2014-02-22 16:57:02      阅读:289      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
    //抽象形状类
    $.Class("Shape", {}, {
        //构造函数
        init : function(edge) {
            this.edge = edge;
        },
        //实例方法
        getEdge : function() {
            return this.edge;
        },
        //实例方法
        calcArea : function() {
            return -1;
        }
    });
    
    //三角形类
    Shape("Triangle", {}, {
        //构造函数
        init : function(bottom, height) {
            //调用父类同名方法
            this._super(3);
            this.bottom = bottom;
            this.height = height;
        },
        //重写方法
        calcArea : function() {
            return this.bottom * this.height / 2;
        }
    });

    //矩形类
    Shape("Rectangle", {}, {
        //构造函数
        init : function(bottom, height) {
            //调用父类同名方法
            this._super(4);
            this.bottom = bottom;
            this.height = height;
        },
        //重写方法
        calcArea : function() {
            return this.bottom * this.height;
        }
    });

    var triangle = new Triangle(4, 5);
    console.log(triangle.getEdge());
    console.log(triangle.calcArea());

    var rectangle = new Rectangle(4, 5);
    console.log(rectangle.getEdge());
    console.log(rectangle.calcArea());
bubuko.com,布布扣

javascriptMVC框架面向对象编程

原文:http://www.cnblogs.com/zfc2201/p/3560424.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!