Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java 中,函数的最大大小为65535 字节。
ECMAScript 中是否有任何指定的限制?
浏览器中的已知限制呢?
在 ECMAScript 规范中对FunctionBody的最大大小没有明确的限制,据我所知,浏览器中函数声明的最大大小也没有任何记录限制。
许多浏览器确实对字符串长度有大小限制,例如 Chrome 中的 512MB,因此使用Function构造函数创建的任何函数肯定不会大于此限制,并且可能相同或类似的限制也适用于已解析代码中的函数。
Function