我想使用实例访问静态属性。像这样的东西
function User(){
console.log('Constructor: property1=' + this.constructor.property1) ;
}
User.prototype = {
test: function() {
console.log('test: property1=' + this.constructor.property1) ;
}
}
User.property1 = 10 ; // STATIC PROPERTY
var inst = new User() ;
inst.test() ;
在我的情况下,我不知道实例属于哪个类,所以我尝试使用实例“构造函数”属性访问静态属性,但没有成功:(这可能吗?