码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript2种构造函数创建对象的模式以及继承的实现

时间:2015-06-07 14:38:38      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:javascript   模式   构造函数   继承   

第一种模式:

function Person(){
}
Person.prototype.say=function(){
    alert(‘hello‘);
}
var person=new Person();
person.say();//hello

根据第一种模式说一下继承的实现:

function Person(){
}
Person.prototype.say=function(){
    alert(‘hello‘);
}
function Man(){}
Man.prototype=new Person()
var man=new Man();
man.say(); //hello

第二种模式:

function Person(){
    var _this={};//创建一个空的对象
    _this.say=function(){alert(‘hello‘)};
    return _this;
}
function person=new Person();
person.say();//hello

第二种模式的继承:

function Person(){
    var _this={};//创建一个空的对象
    _this.say=function(){alert(‘hello‘)};
    return _this;
}
function Man(){
    var _this=new Person();
    return _this;
}
var a=new Man();
a.say();//hello

本文作者:罗坚元

JavaScript2种构造函数创建对象的模式以及继承的实现

标签:javascript   模式   构造函数   继承   

原文地址:http://blog.csdn.net/sunyuan_software/article/details/46399775

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