


The main purpose of this article is to explain the mixed use of JavaScript arrays and objects. Due to the weak checking characteristics of JS, different types of variables can be stored in JS arrays at the same time. For example, you can store numbers, strings, characters, Objects and other contents are placed in the same array. Objects can also do the same thing. The difference is that objects can specify aliases for each member in the object, so that the data is more readable during programming, such as:
var arr1 = ["飞鱼", 25, 172, "江苏"]; var person = {name:"飞鱼",age: 25, height:172,province: "江苏"};
In this way, is person.name easier to read and use than arr1[0]? Of course, arrays and objects each have their own advantages. The focus of this article is to combine the advantages of both and use them comprehensively.
One-dimensional array
The following code creates an array named cars: first create the array, and then assign values one by one
var cars=new Array(); cars[0]="Audi"; cars[1]="BMW"; cars[2]="Volvo";
or (condensed array): assign value when creating array object
var cars=new Array("Audi","BMW","Volvo");
Or (literal array): Do not create variables, directly assist, but pay attention to the parentheses "( )" used when creating objects, and the square brackets "[ ]" used when assigning values directly. This can easily lead to errors if you are not careful.
Example
var cars=["Audi","BMW","Volvo"];
The above are three ways to create a one-dimensional array. Due to the weak checking nature of JS, you can put variables of different types in a one-dimensional array.
Two-dimensional and multi-dimensional arrays:
1. Method 1 of creating a two-dimensional array: First create a one-dimensional array, and then create one-dimensional data for all members of the one-dimensional array
var persons = new Array(); persons[0] = new Array(); persons[1] = new Array(); persons[2] = new Array(); persons[0][0] = "zhangsan"; persons[0][1] = 25; persons[1][0] = "lisi"; persons[1][1] = 22; persons[2][0] = "wangwu"; persons[2][1] = 32; persons[0] = ["zhangsan", 25]; persons[1] = ["lisi", 21]; persons[2] = ["wangwu", 32];
Compared with the previous method, this one is much simpler and easier to read.
persons.length = 3
2. Method 2 of creating a two-dimensional array: First create a one-dimensional array, and then directly assign values to all members of the one-dimensional array
var persons = new Array();
3. Method 3 of creating a two-dimensional array: direct assignment
var persons = [["zhangsan", 25], ["lisi", 21], ["wangwu", 32]];
4. Summary
Although the first and second methods are more troublesome, you can first create an empty multi-dimensional array and then assign values according to your own needs in the for loop. The third method is relatively simple and easy to use for enumerated data.
The last question about two-dimensional arrays is what is the length of a two-dimensional or multi-dimensional array? Let’s test the following code:
document.write("persons = " + persons + "
persons.length = " + persons.length);
The output result is:
persons = zhangsan,25,lisi,21,wangwu,32
In other words, the length property of a multi-dimensional array returns the length of the first dimension of the multi-dimensional array, not the number of elements in the multi-dimensional array.
5. How to return the number of elements of a multi-dimensional array
The following array:
var persons = [["zhangsan", 25], ["lisi", 21], ["wangwu", 32]];
通过维数(此处是3)乘以每维元素的个数(此处是2)就可以得出该多维数组的元素个数是6了。但是这并不是保险的做法,因为多维数组中每一个维度的元素个数是可以不一样的,如:
var persons = [["zhangsan", 25], ["lisi", 21, 172], ["wangwu", 32]];
该数组的第一维的第二个元素数组包含三个元素,其他的只有两个,这再使用length来计算还是3,因为第一维的元素个数没变嘛。但是再使用上面的方法计算该多维数组的元素个数就不对了。
因此多维数组的length属性和一维数组一样,永远返回第一维数组的元素个数。计算多维数组的元素个数,可以自己创建一个或多个嵌套for循环来计算,如:
在知道数组的维度的情况下,可以针对该数组写算法,如二维数组:
var persons = [["zhangsan", 25], ["lisi", 21], ["wangwu", 32]]; function getArr2ElementNum(arr) { var eleNum = 0; if (arr == null) { return 0; } for (var i = 0; i < arr.length; i++) { for (var j = 0; j < arr[i].length; j++) { eleNum++; } } return eleNum; } alert(getArr2ElementNum(persons));
在多维数组维度过多,嵌套复杂时,通过上面的方法来写针对的算法就太累了,特别是当这个复杂的多维数组还可能随时变换维度的情况下。如下这个复杂的多重嵌套的多维数组:
var arrN = [["zhangsan", 25, [1, "wangyuchu", 54, [123, 34, 16]], 43], ["lisi", 21, 172], ["wangwu", 32, "suzhou"]];
甚至,有些多维嵌套数组比这个还复杂,那怎么计算数组元素个数呢,我写了一个求数组元素个数的函数,不管是一维还多维,也不管是多么复杂的嵌套多维数组,都可以计算出来,算法不麻烦,主要用到了递归的理念:
//判断某个对象是不是数组
function isArray(obj) { return obj && ( typeof obj === 'object') && (obj.constructor == Array); } //eleNum变量初始值为0,用来统计数组元素个数 var eleNum = 0; //递归计算某个数组元素是不是下一维数组,如果是,则继续递归下去;如果不是,统计元素个数。 function recursion(obj) { if (isArray(obj)) { for (var j = 0; j < obj.length; j++) { if (!isArray(obj[j])) { eleNum++; continue; } recursion(obj[j]); } } else { eleNum++; } } //arr为要计算数组元素个数的一维或多维数组,通过调用递归函数recursion返回数组元素个数 function getArrNElementNum(arr) { if (arr == null) { return 0; } recursion(arr); return eleNum; } //随意定义一个复杂的多维嵌套数组 var arrN = [["zhangsan", 25, [1, "wangyuchu", 54, [123, 34, 16]], 43], ["lisi", 21, 172], ["wangwu", 32, "suzhou"]]; //打印出来数组元素个数 alert(getArrNElementNum(arrN));
对象:
对象由花括号分隔。在括号内部,对象的属性以名称和值对的形式 (name : value) 来定义。属性由逗号分隔:
var person={firstname:"Bill", lastname:"Gates", id:5566};
上面例子中的对象 (person) 有三个属性:firstname、lastname 以及 id。
空格和折行无关紧要。声明可横跨多行:
var person={ firstname : "Bill", lastname : "Gates", id : 5566 };
对象属性有两种寻址方式:
实例
name=person.lastname; name=person["lastname"];
对象和多维数组的混合使用:
想象这么一个场景,要枚举并统计清华大学(qinghua)、北京大学(beida)、浙江大学(zheda)三所大学一共有多少个系,怎么做?
首先,建立一个数组,数组中包括着三所学校:
var departments = [qinghua, beida, zheda];
每个学校又有很多不同或相同的学院(xx),如何表示?在这里就要用到数组包含对象了:
var departments = [qinghua{xx1, xx2, xx3}, beida{xx4, xx5,
xx6, xx7}, zheda{xx8, xx9}];
每个学院又有不同的系(d),如何表示?
var departments = [qinghua{xx1:[d1, d2], xx2[d3, d5],
xx3:[d7, d8]}, beida{xx4, xx5, xx6, xx7}, zheda{xx8,
xx9}];
//只是举个例子,后面两个大学我就不表示了
上述例子就是一个数组,该数组的元素是学校对象,学校对象有N个学院属性,而每个学院属性又是一个包含多个系的数组,这就是一个典型的多维数组和对象混合使用的例子,可以简单明了的说明和列表学校、学院和系之间的级别、归属和数量关系。

一维数组使用sort()函数进行排序,二维数组使用usort()函数按内部元素排序,高维度数组使用多层嵌套usort()函数按层级元素进行排序,分解问题逐层解决是关键。

矩阵是按行和列排列的一组数字。m行n列的矩阵称为mXn矩阵,m和n称为其维度。矩阵是一个二维数组,在Python中使用列表或NumPy数组创建。一般来说,矩阵乘法可以通过将第一个矩阵的行乘以第二个矩阵的列来完成。这里,第一矩阵的列数应等于第二矩阵的行数。输入输出场景假设我们有两个矩阵A和B,这两个矩阵的维度分别为2X3和3X2。相乘后得到的矩阵将有2行1列。[b1,b2][a1,a2,a3]*[b3,b4]=[a1*b1+a2*b2+a3*a3][a4,a5,a6][b5,b6][a4*b2+a

在PHP中,数组是一种非常常见的数据类型。有时候,我们会面对一些包含多维数组的情况,这时候如果需要对所有元素进行相同的操作,可以使用array_walk_recursive()函数。array_walk_recursive()函数是PHP中一个非常强大的递归函数,可以帮助我们对多维数组进行递归操作。它可以递归地遍历多维数组的每一个元素,并对其进行相应的操作。

如何在PHP中将多个数组合并为一个多维数组在PHP开发中,我们经常会遇到将多个数组合并为一个多维数组的需求。这个操作在操作大数据集合时非常有用,可以帮助我们更好地整理和处理数据。本篇文章将为大家介绍几种常用的方法来实现这个操作,并附上代码示例供参考。方法一:使用array_merge函数array_merge函数是PHP中常用的数组合并函数,它可以将多个数组

php数组二维转一维数组的方法:1、使用循环遍历,使用循环遍历二维数组,将每个元素添加到一维数组中;2、使用“array_merge”函数,可以将多个数组合并为一个数组,将二维数组当做参数传递给“array_merge”函数,将其转换为一维数组;3、使用“array_reduce”函数,可以将数组中的所有值通过一个回调函数来进行处理,并最后返回一个结果。

如何在PHP中对多维数组进行排序在PHP中,数组是一种非常常见且重要的数据结构,而多维数组更是在一些复杂的数据处理中使用频率较高。但是,对于多维数组的排序操作可能会有些棘手。本文将向您介绍如何在PHP中对多维数组进行排序,并提供具体的代码示例。在开始之前,先来了解一下多维数组的结构。多维数组是指一个数组中的元素又是一个数组,形成了一种嵌套的结构。例如:$st

反转多维PHP数组的两种有效方法:递归使用array_reverse()函数:递归反转每个嵌套数组的元素。PHP7的array_reverse()函数:使用array_reverse()函数的新重载,对多维数组进行反转。

深入探讨PHP数组:多维数组、关联数组等全面解析PHP中数组是一种非常重要的数据结构,它可以存储多个数据项并通过索引进行访问。在PHP中,数组可以分为索引数组、关联数组和多维数组等不同类型,每种类型都有其独特的用途和特点。本文将深入探讨PHP数组的各种类型,包括如何声明、访问、遍历和操作数组,同时将会提供具体的代码示例以帮助读者更好地理解。一、索引数组索引数


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
