gpt4 book ai didi

javascript - 为什么 apply with too many arguments 抛出 "Maximum call stack size exceeded"?

转载 作者:数据小太阳 更新时间:2023-10-29 05:11:42 26 4
gpt4 key购买 nike

在 Chrome 和 Node 中,以下代码会抛出错误:

function noop() {}
var a = new Array(1e6)
// Array[1000000]
noop.apply(null, a)
// Uncaught RangeError: Maximum call stack size exceeded

我明白为什么将 100 万个参数传递给一个函数可能是个坏主意,但谁能解释为什么错误是超出最大调用堆栈大小,而不是更相关的错误?

(如果这看起来很无聊,原来的情况是 Math.max.apply(Math, lotsOfNumbers),这是一种从数组中获取最大数的不合理方法。)

最佳答案

函数参数放在堆栈上。您正试图将一百万个参数放入堆栈,这超过了最大堆栈大小。所以错误信息与错误原因非常相关。

关于javascript - 为什么 apply with too many arguments 抛出 "Maximum call stack size exceeded"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42263108/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com