面向对象深入理解2
Posted deveil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面向对象深入理解2相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
用代码带你“深入”理解90%的初学者都没理解清楚的Java基础知识——面向对象基础