码迷,mamicode.com
首页 > 其他好文 > 详细

使用克隆的原型模式

时间:2017-02-21 17:06:23      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:克隆   animal   nbsp   return   var   asc   color   支持   prot   

  • ECMAScript 5中提供了Object.create()方法。
  • 使用这个方法很容易克隆一个一模一样的对象。
var animal=function(){
      this.blood=100;
      this.attackLevel=1;
      this.defenseLevel=1;
};
var a=new animal();
a.blood=1000;
a.attackLevel=15;
a.defenseLevel=9;

//调用克隆方法
var cloneAnimal=Object.create(a);
console.log(cloneAnimal);//输出:Object{blood:1000,attackLevel:15,defenseLevel:9}
  • 当然有些比较旧的浏览器不支持ES5,可用下面代码替换:
Object.create=Object.create||function(obj){
      var F=function(){};
      F.prototype=obj;
      return new F();  
}

 

使用克隆的原型模式

标签:克隆   animal   nbsp   return   var   asc   color   支持   prot   

原文地址:http://www.cnblogs.com/meiyh/p/6424478.html

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