• 【学习笔记69】函数的柯里化


    一、认识函数的柯里化

    • 将一个接受多个参数的函数,更改为需要调用多次, 每次只传一个参数的函数
    • 利用了闭包, 延长了 外部函数的参数使用时间

    (一)基础版

    1. function sum (a, b) {
    2. console.log(a + b)
    3. }
    4. sum(10, 20);
    5. sum(10, 30);
    6. sum(10, 40);

    (二)进阶版

    1. function sum (a) {
    2. return function (b) {
    3. console.log(a + b);
    4. }
    5. }
    6. let res = sum(10);
    7. console.log(res);
    8. res(20);
    9. res(30);
    10. res(40);
    11. let res1 = sum(100);
    12. res1(20);
    13. let res2 = sum(200);
    14. res2(20);

    (三)正则验证密码

    1、基础版

    1. const reg = /^\w{6,10}$/;
    2. const boo = reg.test('abc123');
    3. console.log(boo);

    2、函数封装

    基础版

    1. function myTest1(str) {
    2. return /^\w{6,10}$/.test(str);
    3. }
    4. function myTest2(str) {
    5. return /^\d{4,8}$/.test(str);
    6. }
    7. let boo1 = myTest1('abc123');
    8. let boo2 = myTest1('123');
    9. console.log(boo1); //true
    10. console.log(boo2); //false

    进阶版

    1. function myTest(reg, str) {
    2. return reg.test(str);
    3. }
    4. let boo = myTest(/^\w{6,10}$/, 'abc123');
    5. console.log(boo);
    6. let boo1 = myTest(/^\d{4,8}$/, '123456');
    7. let boo2 = myTest(/^\d{4,8}$/, '7890123');
    8. let boo3 = myTest(/^\d{4,8}$/, 'asdzxcasd');
    9. console.log(boo1);
    10. console.log(boo2);
    11. console.log(boo3);

     3、函数的柯里化

    1. function curry(reg) {
    2. return function (str) {
    3. return reg.test(str);
    4. }
    5. }
    6. let test1 = curry(/^\d{4,8}$/);
    7. console.log(test1);
    8. let boo1 = test1('123456');
    9. console.log(boo1);
    10. let boo2 = test1('qwe123456');
    11. console.log(boo2);
    12. let test2 = curry(/^\w{6,10}$/);
    13. console.log(test2);
    14. let boo3 = test2('!@#$%^&*');
    15. console.log(boo3);
    16. let boo4 = test2('123qwe');
    17. console.log(boo4);

    二、封装柯里化

    • 外层函数负责收集参数
    • 内层函数负责在参数收集完毕的时候执行功能
    1. https://www.baidu.com:8080/index.html
    2. https://www.baidu.com:8080/a.html
    3. 协议: https http
    4. 域名: www.baidu.com     www.taobao.com      127.0.0.1
    5. 端口号: 0~65535     80      443     7777
    6. 地址: index.html        a.html      /a/b/c.html

    1、基本实现 

    1. function fn(a, b, c, d) {
    2. return a + '://' + b + ':' + c + d
    3. }
    4. let res1 = fn('http', '127.0.0.1', '80', '/a.html')
    5. console.log(res1);
    6. let res2 = fn('http', '127.0.0.1', '443', '/b.html')
    7. console.log(res2);
    8. let res3 = fn('http', '127.0.0.1', '8080', '/c.html')
    9. console.log(res3);

     2、封装柯里化

    1. function fn(a, b, c, d) {
    2. return a + '://' + b + ':' + c + d
    3. }
    4. // 外层函数 负责接接收参数
    5. function currying(callback, ...arg) {
    6. // ...arg 将后续所有实参, 以数组的形式存放在arg形参内, 如果没有传递的话, 是一个空数组
    7. // 功能函数, 首次调用必传
    8. // console.log(callback)
    9. // 基本参数, 首次调用可传可不传
    10. // console.log(arg)
    11. // 函数名.length 能获取到函数的形参数量
    12. // console.log(callback.length)
    13. const len = callback.length;
    14. // 内层函数负责 当前是否接受够参数了
    15. return function (...iArg) {
    16. // 开始执行共能前, 先将两次函数调用接受的参数合并为一个数组, 后续用于计算传递的参数是否足够
    17. iArg = [...arg, ...iArg]
    18. // 如果传递的参数数量, 刚好是功能函数需要的数量, 代表此时参数足够, 直接执行函数即可
    19. if (iArg.length === len) {
    20. // 执行功能函数, 此时会得到一个拼接好的字符串, 我们将这个字符串返回出去, 就能得到功能函数的执行结果
    21. return callback(...iArg)
    22. // else 分支执行时表明此时函数参数仍未接受足够, 此时需要继续接受参数,
    23. // 根据函数功能, 我们应该调用currying并将之前接收的功能函数与之前传递所有的参数全部传递进去
    24. } else {
    25. // callback => 功能函数 ...iArg => 之前传递进来的所有的参数
    26. return currying(callback, ...iArg)
    27. // 这里是返回了一个 currying的调用结果, 所以相当于是返回了内层函数, 并且外层函数是接受了对应的功能函数与实际参数
    28. }
    29. }
    30. }
    31. // 此处传递了功能函数与一个基本参数, 按照函数规则, 后续起码应该再传递够三个参数, 才能正常执行功能
    32. let res = currying(fn, 'https')
    33. // 此时传递了两个参数, 加上首次调用的一个参数, 现在接收到了 3个字符串, 所以应该在传递一个参数, 才能够正常执行
    34. let res1 = res('127.0.0.1', '80')
    35. // 此时传递了 一个 参数, 加上之前的三个字符串参数, 所以现在正好满足 4个参数, 所以现在就可能正常执行功能函数
    36. let str1 = res1('/a.html')
    37. console.log(str1) // https://127.0.0.1:80/a.html
    38. // 此处传递了 功能函数, 没有传递基本参数, 按照函数规则, 后续起码应该传递四个参数, 才能正常执行功能
    39. let res2 = currying(fn)
    40. // 此时传递了四个参数, 因为首次没有传递字符串, 这里就是有4个参数, 所以正常执行函数
    41. let str2 = res2('https', 'www.baidu.com', '8080', '/a.html')
    42. console.log(str2) // https://www.baidu.com:8080/a.html
    43. // 此处传递了 功能函数, 与 四个后续的参数, 根据函数规则, 后续不需要传递参数即可
    44. let res3 = currying(fn, 'https', 'www.baidu.com', '8080', '/a.html')
    45. // 因为之前传递的参数已足够, 所以此处可以不调用
    46. let str3 = res3()
    47. console.log(str3) // https://www.baidu.com:8080/a.html

    3、无注释

    1. function fn(a, b, c, d) {
    2. return a + '://' + b + ':' + c + d
    3. }
    4. function currying(callback, ...arg) {
    5. const len = callback.length;
    6. return function (...iArg) {
    7. iArg = [...arg, ...iArg]
    8. if (iArg.length === len) {
    9. return callback(...iArg)
    10. } else {
    11. return currying(callback, ...iArg)
    12. }
    13. }
    14. }
    15. let res = currying(fn, 'https')
    16. let res1 = res('127.0.0.1', '80')
    17. let str1 = res1('/a.html')
    18. console.log(str1) // https://127.0.0.1:80/a.html
    19. let res2 = currying(fn)
    20. let str2 = res2('https', 'www.baidu.com', '8080', '/a.html')
    21. console.log(str2) // https://www.baidu.com:8080/a.html
    22. let res3 = currying(fn, 'https', 'www.baidu.com', '8080', '/a.html')
    23. let str3 = res3()
    24. console.log(str3) // https://www.baidu.com:8080/a.html

    三、函数防抖与节流

    1. "text" id="inp">
    2. <script>
    3. const inp = document.querySelector('#inp')
    4. let flag = true
    5. inp.oninput = function (e) {
    6. if (flag === false) return
    7. flag = false
    8. console.log(`搜索了 ${e.target.value} 内容`)
    9. setTimeout(() => {
    10. flag = true
    11. }, 300)
    12. }
    13. script>

    (一)节流

    • 在一定时间内, 快速触发同一事件
    • 在规定时间内, 只能触发一次, 下一次必须等到规定时间结束以后才能执行

    1、补充知识点 

    自执行函数

    • 第一个小括号内写函数体
    • 第二个小括号内写实参(会传递给第一个小括号内部的函数)
    •             ; (function (num) {

                      console.log(num)

                  })(666)

    1. (function () {
    2. console.log(999)
    3. })();
    4. ; (function () {
    5. console.log(999)
    6. })()

    2、节流

    1. "text" id="inp">
    2. <script>
    3. // 节流
    4. inp.oninput = (function (flag) {
    5. return function (e) {
    6. if (flag === false) return
    7. flag = false
    8. console.log(`搜索了 ${e.target.value} 内容`)
    9. setTimeout(() => {
    10. flag = true
    11. }, 300)
    12. }
    13. })(true)
    14. script>

    (二)防抖

    • 在一定时间内, 快速触发同一事件
    • 每次重新触发, 都顶掉前一次事件, 以后一次事件为主
    1. "text" id="inp">
    2. <script>
    3. inp.oninput = (function (timer) {
    4. return function (e) {
    5. clearInterval(timer)
    6. timer = setTimeout(function () {
    7. console.log(`搜索了 ${e.target.value} 内容`)
    8. }, 300)
    9. }
    10. })(0)
    11. script>

  • 相关阅读:
    C++-宏
    HAproxy+keepalived+nginx 实验部署
    java任务跟踪系统
    @Autowired与@Resource区别
    NeuroImage | 右侧颞上回在语义规则学习中的作用:来自强化学习模型的证据
    获取QTextedit文本宽度
    信驰达RF-DG-52PAS CC2652P Zigbee 3.0 USB Dongle烧录指南
    Linux系统下的文件系统、各文件系统下目录结构及作用
    【PTHREAD】线程互斥与同步之自旋锁
    【SSH远程登录长时间连接后容易出现自动断开的解决方案】
  • 原文地址:https://blog.csdn.net/m0_58190023/article/details/128053025