第一种方式:
为了保证构造函数必须与new命令一起使用,一个解决办法是,在构造函数内部使用严格模式,即第一行加上use strict。
function Fubar(foo, bar){
'use strict';
this._foo = foo;
this._bar = bar;
}
Fubar()
// TypeError: Cannot set property '_foo' of undefined
第二种方式:
是在构造函数内部判断是否使用new命令,如果发现没有使用,则直接返回一个实例对象。
function Fubar( foo,bar){
if( !(this instanceof Fubar)){
return new Fubar( foo,bar)
}
this._foo=foo;
this._bar=bar;
}
Fubar( 1,3)._foo //1
( new Fubar(1,,2))._foo
new命令总是返回一个对象,要么是实例对象,要么是return语句指定的对象