zoukankan      html  css  js  c++  java
  • 数组降维-JavaScript中apply方法妙用

    海纳百川,有容乃大

    1、普通循环转换方式

    将多维数组(尤其是二维数组)转化为一维数组是业务开发中的常用逻辑,除了使用朴素的循环转换以外,我们还可以利用Javascript的语言特性实现更为简洁优雅的转换。本文将从朴素的循环转换开始,逐一介绍三种常用的转换方法,并借此简单回顾Array.prototype.concat方法和Function.prototype.apply方法。
    以下代码将以把二维数组降维到一维数组为例。

    复制代码
    function reduceDimension(arr) {
        var reduced = [];
        for (var i = 0; i < arr.length; i++) {
            for (var j = 0; j < arr[i].length; j++) {
                reduced.push(arr[i][j]);
            }
        }
        return reduced;
    }
    复制代码

    此方法思路简单,利用双重循环遍历二维数组中的每个元素并放到新数组中。

    2、 利用concat转换
    先来回顾一下MDN上对于该方法的介绍: 
    "concat creates a new array consisting of the elements in the object on which it is called, followed in order by, for each argument, the elements of that argument (if the argument is an array) or the argument itself (if the argument is not an array)."
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat

    即如果concat方法的参数是一个元素,该元素会被直接插入到新数组中;如果参数是一个数组,该数组的各个元素将被插入到新数组中;将该特性应用到代码中:

    复制代码
    function reduceDimension(arr) {
        var reduced = [];
        for (var i = 0; i < arr.length; i++){
            reduced = reduced.concat(arr[i]);
        }
        return reduced;
    }
    复制代码

    arr的每一个元素都是一个数组,作为concat方法的参数,数组中的每一个子元素又都会被独立插入进新数组。
    利用concat方法,我们将双重循环简化为了单重循环。

    3、利用apply和concat转换
    按照惯例,先来回顾一下MDN上对于apply方法的介绍:
    "The apply() method calls a function with a given this value and arguments provided as an array."
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/apply

    即apply方法会调用一个函数,apply方法的第一个参数会作为被调用函数的this值,apply方法的第二个参数(一个数组,或类数组的对象)会作为被调用对象的arguments值,也就是说该数组的各个元素将会依次成为被调用函数的各个参数;将该特性应用到代码中:

    function reduceDimension(arr) {
        return Array.prototype.concat.apply([], arr);
    }

    arr作为apply方法的第二个参数,本身是一个数组,数组中的每一个元素(还是数组,即二维数组的第二维)会被作为参数依次传入到concat中,效果等同于[].concat([1,2], [3,4], [5,6])。

    转载自:https://www.cnblogs.com/exhuasted/p/7833263.html

  • 相关阅读:
    STL之list函数详解
    深入剖析deque容器实现
    STL之deque详解
    STL之vector函数详解
    关于vector大小(size)和容量(capacity)总结
    typename 与 typedef的区别与应用
    oracle解除锁表【原】
    Spring触发器触发2次问题【转】
    JQuery弹出层,点击按钮后弹出遮罩层,有关闭按钮【转】
    使用JavaScript修改浏览器URL地址栏的实现代码【转】
  • 原文地址:https://www.cnblogs.com/planetwithpig/p/11735193.html
Copyright © 2011-2022 走看看