gpt4 book ai didi

错误?每行最大匿名函数堆栈

转载 作者:可可西里 更新时间:2023-11-01 01:54:52 25 4
gpt4 key购买 nike

请耐心等待。

tl;dr 只有当我在函数参数之间放置换行符时,我的代码才有效。 javascript 中每行的堆栈大小或函数声明是否有最大值?

我一直在测试我的一个假设,如果您足够有创意,所有 javascript 函数都可以重写(通过牺牲速度和可读性)而无需使用:

  • 空格或换行符
    • (推而广之,这可以防止使用许多关键字)
  • 声明的数据类型(例如 ""[]0false{} 等)
  • 每个范围有多个语句
  • 任何类型的运算符(包括逻辑运算符和关系运算符)

或者,通俗地说,整个函数应该匹配 /^[a-zA-Z(){}.,]*$/

到目前为止,我在证明这个假设的过程中面临的最大挑战(我还没有接触正则表达式,这应该很有趣)是处理数学,这在很大程度上依赖于运算符和数字。

我已经编写了遵循我的参数的函数,并且:

  • 计算基本算术(add(a,b)//a+b)
  • 形成整数 (digs(one,three,six,eight)//1368)
  • 获取和设置对象属性 (setprop(a,b,c)//a[b]=c)

一般的想法是像下面这样构造函数,以这种方式使算法稍微更具可读性和可写性:

function(...){(function(add,morefuncs...){algorithm...})(function(){...},morefuncs...)}

我的函数单独工作,当它们足够少时也以这种形式工作,但是当我添加更多时,我注意到一个非常奇怪的错误:

//For some reason, this breaks:
func(arguments,...,f1,f2)

//And this doesn't:
func(arguments,...,
f1,f2)

考虑到我的代码需要大量的匿名函数,我假设 javascript 可以在一行中处理最大数量的匿名函数,但我找不到任何说明这一点或其他方面的文档。

这是我的代码的三个版本:

版本 1:没有换行符,不起作用

(function(){return(function(domath){return(domath)(function(getprop,setprop,add,sub,mlt,div,cct,digs,zero,one,two,three,four,five,six,seven,eight,nine){console.log(getprop,setprop)})})((function(){return(function(m,i,o,c,g,h){return(function(a,d){return(function(s,t){return(function(r,n){return(function(f){return(f).apply(null,Array(g,h,function(x,y){return(r(a(x,y)))},function(x,y){return(r(s(x,y)))},function(x,y){return(r(m(x,y)))},d,c,function(){return(Number(Object.keys(arguments).map(function(k){return(g(arguments,k))}).join(String())))}).concat(n))})})(function(x){return(Number(x.toFixed(t)))},Array(Number(),Math.exp(Number()),Array(Number(),String()).toString().length,Array(Number(),Number()).toString().length,Boolean(Math.exp(Number())).toString().length,Boolean(Number()).toString().length,Array(Boolean(),String()).toString().length,Array(Boolean(),Number()).toString().length,Array(Boolean(),Number(),String()).toString().length,Array(Boolean(),Number(),Number()).toString().length))})(function(x,y){return(Math.log(d(Math.exp(x),Math.exp(y))))},Number(c(String(o),String(Number()))))})(function(x,y){return(Math.log(m(Math.exp(x),Math.exp(y))))},function(x,y){return(m(x,i(y)))})})(function(x,y){return(Math.log(Math.pow(Math.exp(x),y)))},function(x){return(Math.pow(x,Array().indexOf(Number())))},Math.exp(Number()),function(x,y){return(Array(x,y).join(String()))},function(x,y){return(Object.getOwnPropertyDescriptor(x,y).value)},function(x,y,z){Object.defineProperty(x,y,Object.getOwnPropertyDescriptor(Array(z,Number()).slice(Number(),Math.exp(Number())),Number()))})})())})()

在 Chrome 上记录 function anonymous(urn) function anonymous(urn)。 (什么是“urn”?我没有该名称的任何变量,并且该字符串的唯一实例是在“return”关键字中。)

在 Firefox 上记录 function anonymous() function anonymous()

版本 2:使用一个换行符,有效

(function(){return(function(domath){return(domath)(function(getprop,setprop,add,sub,mlt,div,cct,digs,zero,one,two,three,four,five,six,seven,eight,nine){console.log(getprop,setprop)})})((function(){return(function(m,i,o,c,g,h){return(function(a,d){return(function(s,t){return(function(r,n){return(function(f){return(f).apply(null,Array(g,h,function(x,y){return(r(a(x,y)))},function(x,y){return(r(s(x,y)))},function(x,y){return(r(m(x,y)))},d,c,function(){return(Number(Object.keys(arguments).map(function(k){return(g(arguments,k))}).join(String())))}).concat(n))})})(function(x){return(Number(x.toFixed(t)))},Array(Number(),Math.exp(Number()),Array(Number(),String()).toString().length,Array(Number(),Number()).toString().length,Boolean(Math.exp(Number())).toString().length,Boolean(Number()).toString().length,Array(Boolean(),String()).toString().length,Array(Boolean(),Number()).toString().length,Array(Boolean(),Number(),String()).toString().length,Array(Boolean(),Number(),Number()).toString().length))})(function(x,y){return(Math.log(d(Math.exp(x),Math.exp(y))))},Number(c(String(o),String(Number()))))})(function(x,y){return(Math.log(m(Math.exp(x),Math.exp(y))))},function(x,y){return(m(x,i(y)))})})(function(x,y){return(Math.log(Math.pow(Math.exp(x),y)))},function(x){return(Math.pow(x,Array().indexOf(Number())))},Math.exp(Number()),function(x,y){return(Array(x,y).join(String()))},
function(x,y){return(Object.getOwnPropertyDescriptor(x,y).value)},function(x,y,z){Object.defineProperty(x,y,Object.getOwnPropertyDescriptor(Array(z,Number()).slice(Number(),Math.exp(Number())),Number()))})})())})()

记录 function anonymous(x, y) function anonymous(x, y, z)

版本 3:为您的观赏乐趣而美化

(function() {
return (function(domath) {
return (domath)(function(getprop, setprop, add, sub, mlt, div, cct, digs, zero, one, two, three, four, five, six, seven, eight, nine) {
console.log(getprop, setprop)
})
})((function() {
return (function(m, i, o, c, g, h) { //multiplication, inverse, one, concatenation, getObjectProperty, setObjectProperty
return (function(a, d) { //add, divide
return (function(s, t) { //subtract, ten
return (function(r, n) { //roundToTenDigits (fix for negatives), numbers (so you can call numbers as variables)
return (function(f) { //makes it so you don't have to re-initialize the functions every time you do math
return (f).apply(null, Array(g, h, function(x, y) {
return (r(a(x, y))) //modifies addition (rounds results like -2.999999999996)
}, function(x, y) {
return (r(s(x, y))) //modifies subtraction
}, function(x, y) {
return (r(m(x, y))) //modifies multiplication
}, d, c, function() { //makes a number out of its digits
return (Number(Object.keys(arguments).map(function(k) {
return (g(arguments, k))
}).join(String())))
}).concat(n)) //adds all the numbers to the arguments array
})
})(function(x) {
return (Number(x.toFixed(t)))
}, Array(Number(), Math.exp(Number()), Array(Number(), String()).toString().length, Array(Number(), Number()).toString().length, Boolean(Math.exp(Number())).toString().length, Boolean(Number()).toString().length, Array(Boolean(), String()).toString().length, Array(Boolean(), Number()).toString().length, Array(Boolean(), Number(), String()).toString().length, Array(Boolean(), Number(), Number()).toString().length))
})(function(x, y) {
return (Math.log(d(Math.exp(x), Math.exp(y))))
}, Number(c(String(o), String(Number()))))
})(function(x, y) {
return (Math.log(m(Math.exp(x), Math.exp(y))))
}, function(x, y) {
return (m(x, i(y)))
})
})(function(x, y) {
return (Math.log(Math.pow(Math.exp(x), y)))
}, function(x) {
return (Math.pow(x, Array().indexOf(Number())))
}, Math.exp(Number()), function(x, y) {
return (Array(x, y).join(String()))
}, function(x, y) {
return (Object.getOwnPropertyDescriptor(x, y).value)
}, function(x, y, z) {
Object.defineProperty(x, y, Object.getOwnPropertyDescriptor(Array(z, Number()).slice(Number(), Math.exp(Number())), Number()))
})
})())
})()

考虑到我要完成的工作的性质,我认为我不能将此称为 javascript 中的错误,但最好有关于每行匿名函数最大数量的文档(如果存在的话)(例如,用于最小化大型库)。

有没有人见过这样的事情?有什么建议吗?

非常感谢。

附言请避免“你的假设是愚蠢的”答案。那就太好了。

编辑:到目前为止的对话更新:

澄清一下,我不希望它输出 function anonymous() function anonymous()。我希望它输出 function anonymous(x, y) function anonymous(x, y, z)

  • Chrome v43 不适用于 Windows 8.1、Windows 7 或 Mac OS X 10。

  • Firefox 39 不工作。

  • Chrome Canary v45 完美运行。另一位用户说 v44 也可以。

  • 我希望尽可能实现跨浏览器兼容性。

  • 我是这段代码的作者。

  • 如果您认为我的代码写得很奇怪,那您显然还没有读完整个问题。

最佳答案

现代版本的 Chrome、Opera、Safari 和 Edge 正常运行。

Firefox 仍然记录不带参数的函数,但由于它现在在代码的所有三个版本之间统一这样做,看来该错误已得到解决。我认为这种显示选择是开发人员有意识的选择。

如果 Firefox 能够通过正确显示函数参数加入 Chrome、Opera、Safari 和 Edge 的行列,那么看到 Mozilla 关于此问题的更多文档仍然会更好。

关于错误?每行最大匿名函数堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31618298/

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