gpt4 book ai didi

javascript - 导出函数需要设置为纯函数

转载 作者:行者123 更新时间:2023-12-03 04:23:43 25 4
gpt4 key购买 nike

在下面的 Trampoline 代码中,我将调用onclick = export(add,5) 来 self View 中的按钮。如何确保此调用始终返回 5 的值,而不取消注释下面代码中 //x=0 的行?

var x = 0;

function repeat(operation, num) {
return function () {
if (num <= 0) {
console.log(x);
// x=0;
return;
}
operation();
return repeat(operation, --num);
}
}

function trampoline(fn) {
while (fn && typeof fn === 'function') {
fn= fn();
}
}

this.export = function (operation, num) {
trampoline(function () {
return repeat(operation, num);
});
}

function add()
{
++x;
}

基本上,我想要一个解决方案,其中变量 x 的范围将确保程序在执行 n 次时始终返回相同的输出(换句话说,我想将“导出”设置为纯函数)

最佳答案

我不太清楚你在问什么,但你没有理由依赖外部状态、突变或此函数的重新分配。 ++x--n 是函数式编程幻想世界中的噩梦 - 您会希望以几乎常见的模式避免它们。

// checking typeof === 'function' is not really reliable in functional programming
// function return values are perfectly good return types
// use data abstraction to mark tail calls
const trampoline = {
bounce: (f, x) =>({ isBounce: true, f, x}),
run: t => {
while (t && t.isBounce)
t = t.f(t.x)
return t
}
}

// local binding, no mutation, just return x + 1
const add = x => x + 1

// bounced repeat
const repeatAux = (f,n) => x =>
n === 0 ? x : trampoline.bounce(repeatAux(f, n - 1), f(x))

// this is the function you export
// it runs trampolined repeatAux with initial state of 0
const repeat = (f,n) =>
trampoline.run(repeatAux(f,n)(0))

// all calls to repeat are pure and do not require external state, mutation, or reassignment
console.log(repeat(add, 5)) // 5
console.log(repeat(add, 5)) // 5
console.log(repeat(add, 7)) // 7
console.log(repeat(add, 7)) // 7

// repeat 1 million times to show trampoline works
console.log(repeat(add, 1e6)) // 1000000

<小时/>

ES5,根据要求

var trampoline = {
bounce: function (f, x) {
return ({ isBounce: true, f, x})
},
run: function (t) {
while (t && t.isBounce)
t = t.f(t.x)
return t
}
}

var add = function (x) { return x + 1 }

var repeatAux = function (f,n) {
return function (x) {
return n === 0
? x
: trampoline.bounce(repeatAux(f, n - 1), f(x))
}
}

var repeat = function (f,n) {
return trampoline.run(repeatAux(f,n)(0))
}

console.log(repeat(add, 5)) // 5
console.log(repeat(add, 5)) // 5
console.log(repeat(add, 7)) // 7
console.log(repeat(add, 7)) // 7
console.log(repeat(add, 1e6)) // 1000000

关于javascript - 导出函数需要设置为纯函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43828283/

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