var Structure[undefined]
function run{
Structure[0]
}
function setStructure(structure){
Structure[0]=structure
}
setStructure(House);
function House(){
//nothing
}
为什么House()函数的返回不在Structure [0]中? 这是一个Minecraft PE mod。
答案 0 :(得分:1)
我想你打算这样做:
function run{
Structure[0]() // <--- notice the parentheses.
}
如果没有括号,函数run
不会执行任何操作。它只引用该函数,而不调用它。