gpt4 book ai didi

javascript - 将纯函数与 Javascript 对象一起使用

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:52:43 27 4
gpt4 key购买 nike

假设我有这样一段代码:

function example() {
const obj = {};
for (let i = 0; i < 10; i++) {
for (let j = 0; j< 10; j++) {
if (obj[i] == undefined) {
obj[i] = 0;
}
if (obj[j] == undefined) {
obj[j] = 0;
} else {
obj[i] += i;
obj[j] += j;
}
}
}
}

在这里你可以看到:

if (obj[i] == undefined) {
obj[i] = 0;
}

我检查 i 是否不在 obj 中 我将 i 分配给 obj 中的键 0 否则我做没什么,我用 j 做样本。

代码是重复的,我不想重复我自己,这是不好的做法所以我做了另一个函数来申请 ij 像这样:

function initObjWithValue(obj, keys) {
for (const key of keys) {
if (obj[key] === undefined) {
obj[key] = 0;
}
}
}

函数很容易理解吧?它的第一个参数是一个对象,第二个参数是要检查的键数组。现在我可以像这样重构我的代码:

function example() {
const obj = {};
for (let i = 0; i < 10; i++) {
for (let j = 0; j< 10; j++) {
initObjWithValue(obj, [i, j]);
obj[i] += i;
obj[j] += j;
}
}
}

代码更清晰,但正如您在我的函数 initObjWithValue 中看到的那样,它改变了 obj,我认为这并不好。这是来自维基页面的引述:

In computer programming, a pure function is a function that has the following properties: Its return value is the same for the same arguments (no variation with local static variables, non-local variables, mutable reference arguments or input streams from I/O devices).

我就卡在这一步了,在这种情况下,我如何才能不重复我自己,并且我可以实现纯功能?

最佳答案

您可以改为让 initObjectWithValue 返回一个新对象,然后您可以将其与当前的 obj 合并。这样,您所做的就是从 obj 中读取,而不是在 initObjectWithValue 中对其进行修改:

function initObjWithValue(obj, keys) {
const tmp = {};
for (const key of keys) {
if (!(key in obj)) {
tmp[key] = 0;
}
}
return tmp;
}

function example() {
const obj = {};
for (let i = 0; i < 10; i++) {
for (let j = 0; j< 10; j++) {
Object.assign(obj, initObjWithValue(obj, [i, j])); // merge the return with current object
obj[i] += i;
obj[j] += j;
}
}
return obj;
}

console.log(example());

关于javascript - 将纯函数与 Javascript 对象一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58496595/

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