解決JavaScript中構造函數浪費內存的問題!
把構造函數中的公共的方法放到構造函數的原型對象上!
// 構造函數的問題!
function Gouzaohanshu(name, age, gender) {
this.name = name;
this.age = age;
this.gender = gender;
// this.hanshu = function() {
// console.log(123)
// }
}
// 把構造函數放到咱們的原型對象身上!
Gouzaohanshu.prototype.hanshu = function () {
console.log(123)
}
var gz = new Gouzaohanshu('lvhang', 23, 'nan');
var gz2 = new Gouzaohanshu('lvhang', 23, 'nan');
console.log(gz.hanshu() === gz2.hanshu()) // true
console.dir(Gouzaohanshu)
// 通常狀況下, 咱們的公共屬性定義到構造函數裏面! 公共的方法咱們放到原型對象身上!
</script>