gpt4 book ai didi

javascript - JS curry 递归处理空参数

转载 作者:行者123 更新时间:2023-12-02 22:40:52 27 4
gpt4 key购买 nike

下面我有一个基本的递归来返回传递的值,我想知道如何处理没有任何参数的函数 - curry()(),但如果相同的函数仍然允许返回值使用参数调用 - curry()()("b")

function curry(x) {

if (x === "b") {
return "Banana";
}

const t = (...y) => {
if (y[0] === "a") {
return "Apple"
}
if (y[0] === "S") {
return "Strawberry"
}

//if() {
//return "Hello World"
//}

return t;

}
return t;
}

curry("b") //? Banana
curry()("a") // ? Apple
curry()()()()()("S"); //? Strawberry

curry()(); //? Hello world

最佳答案

你确实无法实现你所提议的行为。

考虑这两行:

curry()()()()()("S"); //=> Strawberry  // (1)
curry()(); //=> Hello world // (2)

第一个 (1) 可以重写为

let foo = curry()();                   // (1a)
foo()()()("S"); // (1b)

但我们已经从第二行 (2) 知道

curry()() //=> "Hello world"

这不是一个函数,因此 foo() 是尝试调用“Hello world”,就好像它是一个函数一样。

我认为没有任何办法可以解决这个问题。

您可以编写一个可以反复调用的函数,始终返回另一个函数,该函数具有您可以测试的属性,因此,比如说

curry()().value //=> "Hello world"
// and
curry()()()()()("S").value //=> "Strawberry"

但这是一个不同的问题。

关于javascript - JS curry 递归处理空参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58592299/

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