function User(name, age) { //构造函数模式
this.name = name;
this.age = age;
this.show = function () {
return this.name + ‘ ‘+this.age;
};
}
要用时候用new运算符就可以了
var user1 = new User(‘小明‘, 30);
使用构造函数的方法,既解决了重复实例化的问题,又解决对象识别的问题。
要创建User对象的新实例,就要使用new操作符,使用这个方式构建实例对象,会经过下面4个步骤:
1.创建一个新对象;
2.将构造函数的作用域给新对象(因此this指向的这个新对象)。
3.执行构造函数内的代码在(为新对象添加属性);
4.返回新对象。
时间: 2024-10-17 05:51:35