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

JS继承

时间:2018-02-03 21:55:07      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:new   cti   fun   class   name   body   object   cto   his   

JS继承

伪类:通过构造一个人伪类来继承某个构造器。通过定义它的constructor函数并替换它的prototype为某个构造器的实例。(类的继承)

//构造器
var Mammal = function (name) {
    this.name = name;    
}
Mammal.prototype.get_name = function () {
    return this.name;  
}
Mammal.prototype.says = function () {
    return this.saying;  
}
//继承
var Cat = function (name) {
    this.name = name;
    this.saying = ‘meow‘;      
}
//替换Cat.prototype为一个新的Mammal实例
Cat.prototype = new Mammal();

原型:新对象继承旧对象,通过创建一个对象并将其prototype指向目标对象。

// Object.creat
    Object.creat =function (o) {
        var F= function () {};
        F.prototype=o;
        return new F();     
    }
//对象
var myMammal ={
    name : ‘ bss’,
    get_name : function (){
        return this.name;
},
    says : function () {
        return this.saying || ‘ ‘;
},
}   
//继承对象
var myCat = Object.creat(myMammal);

 

JS继承

标签:new   cti   fun   class   name   body   object   cto   his   

原文地址:https://www.cnblogs.com/JhonFlame/p/8045809.html

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