要创建自己的对象实例,必须首先为其定义一个构造函数。构造函数创建一个新对象,赋予对象属性,并在合适的时候赋予方法。例如,下面的示例为 pasta 对象定义了构造函数。注重 this 要害字的使用,它指向当前对象。
// pasta
是有四个参数的构造器。function pasta(grain, width, shape, hasEgg)
{//
是用什么粮食做的?this.grain = grain;
//
多宽?(数值)this.width = width;
//
横截面外形?(字符串)this.shape = shape;
//
是否加蛋黄?(boolean
)this.hasEgg = hasEgg;
}
定义了对象构造器后,用 new 运算符创建对象实例。
var s...[ 查看全文 ]