标签:内存 java his console prot function OLE 公共属性 ons
// 构造函数的问题!
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>
标签:内存 java his console prot function OLE 公共属性 ons
原文地址:https://www.cnblogs.com/lvhanghmm/p/14106448.html