为什么我不能这样做我不明白?
function hello() {
this.say = 'fdfsd';
}
function goodbye() {
this.example = new hello();
}
但如果我这样做,那就有效;
function hello() {
this.say = 'fdfsd';
}
function goodbye() {
this.example = false;
}
var goodbye = new goodbye();
goodbye.example = new hello();
答案 0 :(得分:3)
你必须构建goodbye
var x = new goodbye();
调用构造函数将创建一个新对象(类型为goodbye
)。
这一行将构造一个hello
类型的对象,并将其分配给example
实例的goodbye
属性
this.example = new hello();
构建之后,goodbye
的实例将包含
// x
{
example: {
say: "fdfsd"
}
}