什么时候动态编译。不太确定正确的术语。但是对于下面的这个片段,它至少是 IIFE 直到你调用 test 才会运行的两倍。一般来说,简单来说,动态编译的流程是什么?
(function(){
function test() {
var T = (function(){
// does not run until you call test
}());
}
test();
})();
什么时候动态编译。不太确定正确的术语。但是对于下面的这个片段,它至少是 IIFE 直到你调用 test 才会运行的两倍。一般来说,简单来说,动态编译的流程是什么?
(function(){
function test() {
var T = (function(){
// does not run until you call test
}());
}
test();
})();