首页 > 编程语言 >JavaScript函数柯里化

JavaScript函数柯里化

时间:2024-02-06 11:22:56浏览次数:30  
标签:function console 函数 JavaScript 柯里化 return log

目录

概念

  • 函数柯里化就是给一个函数传入一部分参数,此时就会返回一个函数来接收剩余的参数。
  • 使用场景:递归使用和处理函数,函数功能尽可能单一。

函数柯里化的实现

    // 没有柯里化的实现
    function sum1(a, b, c){
      return a + b + c
    }
    console.log(sum1(1, 2, 3)); // 6
    // 转为柯里化
    function sum2(a){
      return function(b){
        return function(c){
          return a + b + c
        }
      }
    }

函数柯里化简写

    // 上述柯里化简写
    const sum3 = a => b => c => a + b + c
    console.log(sum3(1)(2)(3)); // 6

函数柯里化使用案例

    // 函数功能尽可能单一的柯里化案例
    function func1(a){
      a += 2
      return function(b){
        b *= 2
        return function(c){
          c **= 2
          return a + b + c
        }
      }
    }
    console.log(func1(1)(2)(3)); // 16

函数柯里化工厂函数

    // 自动处理柯里化函数
    function myCurried(fn){
      return function curry(...args1){
        if(args1.length >= fn.length){ // fn.length获取的是函数传入参数的长度
          return fn.call(null, ...args1)
        }else{
          return function(...args2){
            return curry.apply(null, [...args1, ...args2])
          }
        }
      }
    }

    function sum(a, b, c, d, e){
      return a + b + c + d + e
    }
    let resFunc = myCurried(sum)
    console.log(resFunc(1)(2)(3)(4)(5));
    console.log(resFunc(1, 2)(3)(4)(5));
    console.log(resFunc(1, 2, 3)(4)(5));
    console.log(resFunc(1, 2)(3, 4)(5));

标签:function,console,函数,JavaScript,柯里化,return,log
From: https://www.cnblogs.com/wjy-javascript/p/18009424

相关文章

  • 惰性函数(函数重写)
    目录惰性函数的定义没有使用惰性函数的写法使用惰性函数的一般写法惰性函数的高阶函数写法惰性函数的定义惰性函数表示函数执行的分支只会在函数第一次调用的时候执行,在第一次调用过程中,该函数会被覆盖为另一个按照合适方式执行的函数,这样任何对原函数的调用就不用再经过执行的......
  • 在 ​​numpy​​​ 中,​​isnan()​​​ 是用来检测数值是否为 ​​NaN​​​ 的函数
    在numpy中,isnan()是用来检测数值是否为NaN的函数¹。除了isnan(),numpy还提供了其他一些函数来处理特殊的数值,例如isinf()用来检测数值是否为无穷大,isfinite()用来检测数值是否为有限数⁶。然而,如果你想要检测的不仅仅是NaN,还包括其他类型的缺失值,例如None或者空字符串......
  • strtol() 函数
    功能概述:字符串转换为数值。其声明 位于头文件<stdlib.h>C库函数 longintstrtol(constchar*str,char**endptr,intbase) 把参数 str 所指向的字符串根据给定的 base 转换为一个长整数(类型为longint型),base必须介于2和36(包含)之间,或者是特殊值0。参数str--......
  • Fork - 进程管理中一个重要的函数
    思考问题:当首次调用新创建进程时,其入口在哪里?系统调用fork函数是如何创建进程的?系统调用exec系列函数是如何更换进程的可执行代码的?1.1进程是如何创建的?在Linux系统启动时,最早通过init_task产生的进程是idle进程,也称为swapper进程,其pid为0。该进程会调用......
  • 无涯教程-LOG10E函数
    E的以10为底的对数,约为0.434。LOG10E-语法Math.LOG10ELOG10E-示例console.log(Math.LOG10E)//thebase10logarithmofMath.E:0.434运行上面代码输出0.4342944819032518参考链接https://www.learnfk.com/es6/es6-math-property-log10e......
  • GPT 中的函数调用(function call)是什么?
    在OpenAIChatGPTAPI和GoogleGeminiAPI中我们可以看到函数调用的功能。这个功能是做什么用的?下面大概讲解。以GoogleGeminiAPI函数调用一节中的内容为例,该章节举了一个例子:大语言模型(LLMs)往往无法进行准确的数学运算。比如说,给Gemini两个数\(a\)和\(b\),让它计......
  • 无涯教程-LN10函数
    自然对数为10,约为2.302。LN10-语法Math.LN2LN10-示例console.log(Math.LN10)//thenaturallogarithmof10:~2.303运行上面代码输出2.302585092994046参考链接https://www.learnfk.com/es6/es6-math-property-ln10.html......
  • Springboot在编写CRUD时,访问对应数据函数返回null
    1.我遇到了什么问题我在学习springboot,其中在编写CRUD时发现访问数据的函数执行下去返回值是null但是其它部分正常。下面是我的错误代码pojopublicclassBot{@TableId(type=IdType.AUTO)privateIntegerid;privateIntegeruser_id;privateStr......
  • 无涯教程-LN2函数
    它返回2的自然对数,大约为0.693。LN2-语法Math.LN2LN2-示例console.log(Math.LN10)//thenaturallogarithmof10:~2.303运行上面代码输出0.6931471805599453参考链接https://www.learnfk.com/es6/es6-math-property-ln2.html......
  • 无涯教程-E函数
    这是一个欧拉常数,是自然对数的底数,大约为2.718。E-语法Math.EE-示例console.log(Math.E)//therootofthenaturallogarithm:~2.718运行上面代码输出2.718281828459045参考链接https://www.learnfk.com/es6/es6-math-property-e.html......