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

原型相关原理

时间:2016-08-01 17:23:18      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

 原型:保存了多个子对象共有成员的属性;

          每一个构造函数都有一个原型属性,引用了该构造函数对应的原型对象;

          由构造函数创建的每个对象中都有一个__proto__属性,只想构造函数的原型对象。

 

function Student(name, age) {             function Student(name, age) {
    this.name = name;                             this.name = name;
    this.age = age;                                   this.age = age;
    this.intro = function(){};                }
}                                                        Student.prototype.intro=function(){}

var lilei = new Student("Li Lei", 18);
var hmm = new Student("Han Meimei", 19);

技术分享

技术分享

 

原型相关原理

标签:

原文地址:http://www.cnblogs.com/slting/p/5726138.html

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