JS 继承与重写

这篇博客探讨了JavaScript中的继承机制,通过实例展示了如何创建父类`User`和子类`Student`。父类`User`包含构造函数和一些方法,如`setUserName`和`getAge`。子类`Student`继承自`User`,并重写了`setAge`和`toString`方法。同时,还定义了一个辅助函数`inherit`用于继承原型,以及`extend`函数用于扩展对象属性。最后,通过DOM加载完成后的例子演示了如何使用这些类。
摘要由CSDN通过智能技术生成

父类:

//构造
function User(userName,age){
    this.userName = userName;
    this.age = age;
}

//方法
User.prototype = {
    //反向回调
    constructor : User,
    toString : function(){
        return this.getUserName()+','+this.getAge();
    },
    setUserName : function(userName){
        this.userName = userName;
    },
    getUserName : function(){
        return this.userName;
    },
    setAge : function(age){
        this.age = age;
    },
    getAge : function(){
        return this.age;
    }
}

子类:

//构造
function Student(no){
    this.no = no;
}

//继承
Student.prototype = inherit(User.prototype);

extend(Student.prototype,
    {
        //重写
        setAge : function(age){
            this.age = age+1;
        },
        //重写
        toString : function(){
            return 'the NO. is: '+this.no+',the name is: '+this.getUserName()+',the age is: '+this.getAge();
        },
        //自身方法
        getNo : function(){
            return this.no;
        }
    }
);

//继承
function inherit(p){
    if(p == null) throw TypeError();
    //对象
    if(Object.create){
        return Object.create(p);
    }
    //方法
    var t = typeof p;
    if(t !== 'Object' && t !== 'function') throw TypeError();
    function f(){};
    f.prototype = p;
    return new f();
}

//扩展
function extend(o,p){
    for(prop in p){
        o[prop] = p[prop]
    }
    return o;
}

//使用


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>继承</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="QZJ">
<script type="text/javascript" src="User.js"></script>
<script type="text/javascript" src="Student.js"></script>
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
</head>

<script>
    $().ready(function(){
        var user = new User('qzj','123456');
        console.log('log',user.toString());
        user.setUserName('qzj');
        console.log('log',user.toString());
        
        var stu = new Student(123);
        stu.setUserName('qzjHahaha');
        stu.setAge(12);        
        console.log('log',stu.toString());
        console.log('log',stu.getNo());
    });    
</script>

<body>
    
</body>    
</html>
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值