熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

批量實現面向對象的實例代碼

2022-06-13   來源: JSP教程 
本文為大家詳細介紹下面向對象的繼承以及如何實現批量實現面向對象感興趣的可以參考下哈希望對大家有所幫助   復制代碼 代碼如下:

  
<!DOCTYPE html>
<html>
<head>
<meta charset="utf">
<title>批量實現面向對象的實例</title>
<script type="text/javascript">
windowonload = function(){
function Person(nameage){
thisname = name;
thisage = age;
}
PersonprototypeshowName = function(){
alert(thisname);
};
function extend(parentchildmethod){
function a(){
parentapply(thisarguments);
childapply(thisarguments);
};
for(var i in parentprototype){
aprototype[i]=parentprototype[i];
}
for(var i in method){
aprototype[i] = method[i];
}
return a;
};//參數為父級構造函數子級構造函數子級方法
var int = extend(Personfunction(nameagejob){
thisjob = job;
}
{
showjob:function(){
alert(thisjob);
}
}
);
var oc=new int(俠客工作);
ocshowjob();
}
</script>
</head>
<body>
<h>面向對象繼承實例</h>
<p>開始展示批量實現面向對象的實例</p>
</body>
</html>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20646.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.