複製代碼 代碼如下:<html>
<head>
<script type="text/javascript"><!--
ClassModel = //類模型,用於建立類
{
create: function()
{
return function(){this.construct.apply(this,arguments);}
}
}
Extend = function(desc, src) //類比類繼承, 將一個對象的所有成員 複製到 另一個對象中
{
for(var c in src)
{
desc[c] = src[c];
}
return desc;
}
Object.prototype.extend = function(src)
{
return Extend.apply(this, [this, src]);
}
var human = ClassModel.create();
human.prototype =
{
construct : function() //建構函式
{
//alert("construct method");
//alert(this.speak() + "," + this.sleep());
},
speak : function()
{
alert("speak");
},
sleep : function()
{
alert("sleep");
},
sex : function()
{
alert("女");
}
}
var h = new human();
h.speak(); //調用human類的speak方法
var student = ClassModel.create();
student.prototype = (new human()).extend({ //student類繼承類human類
sex : function() //方法重載 (多態)
{
alert("男");
},
study : function()
{
alert("studying");
},
thinking : function()
{
alert("thinking");
}
});
var student = new student();
student.sleep(); //調用 父類(human) 的sleep方法
student.study(); //調用 student的study方法
student.thinking(); //調用 student的thinking方法
student.sex(); //結果為 男 不再是父類的 女
// --></script>
</head>
</html>