js的建構函式和原型用法程式碼例項

antzone發表於2017-03-23

在javascript中,建構函式和原型是非常重要的概念,本章節對此不做介紹,只分享一段程式碼例項,在此程式碼中有建構函式和原型的簡單應用,有需要的朋友可以做一下參考,具體概念可以參閱相關章節。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼
function Antzone(webName,age){ 
  this.webName=webName; 
  this.age=age; 
} 
Antzone.prototype.setName=function(name){ 
  this.webName=name; 
}; 
Antzone.prototype.getName=function(){ 
  return this.webName; 
};
var oantzone=new Antzone("螞蟻部落",3); 
console.log(oantzone.getName());

相關閱讀:

1.建構函式可以參閱javascript建構函式簡單介紹一章節。 

2.prototype原型可以參閱javascript prototype原型一章節。 


相關文章