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

面向对象深入理解2

时间:2017-01-09 11:24:56      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:blog   alert   class   create   prot   type   his   方法   面向   

 1     function createPerson(name,sex) {    //构造函数
 2             this.name=name;             //添加属性
 3             this.sex=sex;
 4      }
 5 
 6      createPerson.prototype.showName=function () {   //createPerson的原型的方法
 7            alert(this.name);
 8      };
 9      createPerson.prototype.showSex=function () {
10           alert(this.sex);
11      }
12 
13      var p1=new createPerson(‘ming‘,‘man‘);
14          p1.showName();
15          p1.showSex();
16      var p2=new createPerson(‘xiao‘,‘woman‘);
17          p2.showName();
18          p2.showSex();
19       alert(p1.showName=p2.showSex);

 

面向对象深入理解2

标签:blog   alert   class   create   prot   type   his   方法   面向   

原文地址:http://www.cnblogs.com/deveil/p/6264157.html

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