函数式编程的两条不同的原则

2022/7/25 1:55:30

本文主要是介绍函数式编程的两条不同的原则,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

We have seen two distinct principles for functional programming:

  1. Don't alter a variable or object - create new variables and objects and return them if need be from a function.  Hint: using something like const newArr = arrVar, where arrVar is an array will simply create a reference to the existing variable and not a copy. So changing a value in newArr would change the value in arrVar.

  2. Declare function parameters - any computation inside a function depends only on the arguments passed to the function, and not on any global object or variable.

对于函数式编程,我们有两条不同的原则:

  1. 不要改变变量或者对象-创建新的变量和对象并且如有需要从函数内返回它们。提示:使用类似这样的句子  const newArr = arrVar, 将创建一个对现有变量创建引用,而不是复制。改变newArr的值将会改变arrVar的值。而使用类似这样的句子 let newArr=[...arr], 将会创建一个新数组newArr,并复制原始数组,在函数内完成计算并返回newArr,并不改变原始数组的值。
  2. 声明函数的参数-函数内部的任何计算仅取决于传递给函数的参数,而不取决于任何全局对象或变量。


这篇关于函数式编程的两条不同的原则的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程