JS繼承

JS繼承理解: 我覺得繼承就是子對象繼承父類(超類)的屬性和方法。 我覺得繼承類似於裝飾器,在JS中只需要讓自己的構造函數等同於new出來的父類對象。然後就可以獲得父類的方法和屬性,然後直接通過子類去調用。 父類: function Father(){ this.name = "you father name"; this,age = 47; this.sayName = function(){
相關文章
相關標籤/搜索