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

面向對象繼承實例(a如何繼承b問題)(自寫)

2022-06-13   來源: JSP教程 
經常會看到a如何繼承b的問題決定寫一下其實繼承就是繼承父級的屬性和方法感興趣的朋友可以參考下哈希望對大家有所幫助   復制代碼 代碼如下:

  
<!DOCTYPE html>
<html>
<head>
<meta charset="utf">
<title>面向對象繼承實例</title>
<script type="text/javascript">
windowonload = function(){
function parent(agename){
thisage = age;
thisname = name;
}
parentprototypeshow = function(){
alert(父級方法);
}
function child(agenamejob){
parentapply(thisarguments);
thisjob = job;
}
(function(){
for(var i in parentprototype){
childprototype[i]=parentprototype[i]
}
})();

var b = new parent(俠客行);
var a = new child(狼俠俠客);
ashow();

}
</script>
</head>
<body>
<h>面向對象繼承實例</h>
<p>經常看到面試題有關繼承問題 a如何繼承b 決定寫一下其實繼承就是繼承父級的屬性和方法</p>
</body>
</html>


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