JavaScript中的地图与对象

JavaScript对象与地图 (JavaScript Objects vs Maps)

Objects are super popular in JavaScript so it's not a term you are hearing for the first time even if you're a novice JS developer. Objects, in general, are a very common data structure that is used very often unlike maps. Maps are rarely ever used, you might think, however quite contrary to these maps are even more popular when it comes to building applications. In this article, we'll talk briefly about maps, what they are, how and where they are used? We'll then look at the maps in detail in JavaScript and then finally compare them with objects, which will be our main goal since both of them are quite similar.

对象在JavaScript中非常流行,因此即使您是JS新手,这也不是您第一次听到的术语。 通常,对象是一种非常常见的数据结构,与地图不同,它经常使用。 您可能会想,很少使用过地图 ,但是,与这些地图完全相反的是,在构建应用程序时更为流行。 在本文中,我们将简要介绍一下地图,它们是什么,如何使用它们以及在哪里使用? 然后,我们将详细研究JavaScript中的地图,然后将它们与对象进行比较,这是我们的主要目标,因为两者非常相似。

Let's first understand what maps are, in general. The map is an abstract data structure that stores key-value pairs of any type where every key is unique. For example, let's say we have a list of students and their roll numbers starting from 1 till 50. We can store this data inside a map where our keys will be the roll numbers and the names of students as their corresponding values.

首先,让我们首先了解什么是地图。 该映射是一个抽象的数据结构,用于存储每个键都是唯一的任何类型的键值对。 例如,假设我们有一个学生列表及其从1到50的开始编号。我们可以将此数据存储在地图中,其中我们的键将是开始编号以及作为相应值的学生姓名。

    Key              Value
1   ---->      Gengi
2   ---->      Harry
3   ---->      Sam
4   ---->      Jake
5   ---->      Fuzzy
And so on,

You might say why not store this data inside a simple array and the index could act as the roll no? True, we can. Maps are very similar to arrays in the sense that our keys are mapped to a certain value. However, let's say we now want to map a student ID with a student name,

您可能会说为什么不将这些数据存储在一个简单的数组中,而索引却可以作为roll no? 是的,我们可以。 在将我们的键映射到某个值的意义上,映射与数组非常相似。 但是,假设我们现在要映射一个带有学生姓名的学生ID,

    Key                  Value
stud_19_1   ---->   Gengi
stud_18_7   ---->   Harry
stud_19_2   ---->   Sam
stud_19_11  ---->   Jake
stud_18_3   ---->   Fuzzy

Student ID represents, say the roll number of a student along with the student's batch. This information can't be interpreted as an index since arrays will always have a numeric index. Here, we can use maps to store this data as our key is not an integer or a number but an alphanumeric or a string.

学生ID代表学生的卷号以及该学生的批次。 该信息不能解释为索引,因为数组将始终具有数字索引。 在这里,我们可以使用映射来存储此数据,因为我们的密钥不是整数或数字,而是字母数字或字符串。

Let's suppose now that we want to store the age and names of students and map a student's name to their age. We can store age as the key and name as the value. However, a large number of students will have the same age. This is the constraint in maps which remarkably distinguishes it from other data structures that maps can only contain unique keys. If we have Harry and Sam both having the age of 14, we can either store 14 ---> Harry or 14 ----> Sam, not both. You might say we can take the names as key but then again, there could be two students with the same name having the same or different age.

现在假设我们要存储学生的年龄和姓名,并将学生的姓名映射到他们的年龄。 我们可以将年龄存储为键,将名称存储为值。 但是,大量的学生将具有相同的年龄。 这是映射中的约束,它与其他只能包含唯一键的数据结构有显着区别。 如果我们让HarrySam都只有14岁 ,那么我们可以存储14 ---> Harry或14 ----> Sam,不能同时存储两者 。 您可能会说我们可以将姓名作为关键字,但是同样地,可能会有两个同名学生的年龄相同或不同。

So maps are used where we are sure that we need to store key-value pairs and every key is unique. Maps are built in a way to perform search operations faster as they take up a large amount of space to achieve this. This is why they are also referred to as hashmaps. An important use case would be the contacts in your smartphone. The reason why you can quickly search for a contact on the list is that they are probably implemented as a hashmap with name as the key and value as their phone number. You can have an array of values about a key too but the underlying principle is that you cannot save a different or the same number with a name that already exists in the contact list. A workaround would this would be a hashed string consisting of the contact name and the timestamp (the moment at which that contact was created) that way you can store duplicate names and still perform super fast search operations!

因此,在确保需要存储键值对且每个键都是唯一的情况下使用了映射 。 构建地图的方式可以更快地执行搜索操作,因为它们会占用大量空间来实现此目的。 这就是为什么它们也称为哈希图的原因。 一个重要的用例是智能手机中的联系人。 您可以在列表中快速搜索联系人的原因是,它们可能被实现为以名称为键,值作为电话号码的哈希图。 您也可以具有有关键的值的数组,但是其基本原理是您不能使用联系人列表中已经存在的名称保存不同或相同的数字。 解决方法是使用由联系人姓名和时间戳(创建联系人的时间)组成的哈希字符串,这样您就可以存储重复的姓名并仍然执行超快速搜索操作!

Let's move to objects now. We know everything in JS is an object that belongs to the object class. So are maps. There's the first difference: Maps are an instance of objects however vice versa is not true.

让我们现在移至对象。 我们知道JS中的所有内容都是属于对象类的对象。 地图也是如此。 第一个区别是:映射是对象的实例,但反之亦然

const myMap = new Map([
[1, 'Gengi'],
[2, 'Fuzzy']
]);
console.log(myMap instanceof Object);

Output

输出量

 true

Since we're on it, this is how we create a new map in JS using the new keyword followed by the data structure name, much like we create objects using the new keyword and specify the key-value pairs inside the method.

既然在上面,这就是我们在JS中使用new关键字和数据结构名称创建新地图的方式 ,就像我们使用new关键字创建对象并在方法内部指定键值对一样。

const myObj = new Object();
console.log(myObj instanceof Map);

Output

输出量

false

A stark difference between the two (now all our discussion would be specific to JS) is how we create them? Maps are fairly new and can only be created using the new keyword followed by the Map constructor method. However, you know that objects can be created in a number of ways.

两者之间的明显区别(现在我们所有的讨论都将针对JS)是如何创建它们的? 地图是相当新的,只能使用new关键字和Map构造函数方法创建。 但是,您知道可以通过多种方式创建对象。

const obj1 = {
rollno: 23,
name: 'John'
}
undefined
const obj2 = new Object({
rollno: 46,
name: 'Chris'
})
const obj3 = Object.create(null);
console.log(obj1);
console.log(obj2);
console.log(obj3);

Output

输出量

{rollno: 23, name: "John"}
{rollno: 46, name: "Chris"}
{}

The syntax in the map is more general and simple wrt objects when it comes to accessing elements and checking if they exist inside the data structure,

当涉及访问元素并检查元素是否存在于数据结构中时,映射中的语法更通用,更简单。

myMap.get(1);
obj1["name"];

Output

输出量

"Gengi"
"John"

myMap.has(1);
myMap.has(46);

Output

输出量

true
false

In objects this becomes a bit more tedious,

在物体上,这变得更加乏味,

isExist='name' in obj1;
isExist='age' in obj1;

Output

输出量

true
false

To add elements in a map,

要在地图中添加元素,

myMap.set(46, 'John');
console.log(myMap);

Output

输出量

Map(3) {1 => "Gengi", 2 => "Fuzzy", 46 => "John"}

Both maps and objects in a similar way perform the insert operation in O(1) time.

映射和对象均以O(1)时间执行插入操作。

delete obj2.rollno;
myMap.delete(46);
console.log(obj2);
console.log(myMap);

Output

输出量

{name: "Chris"}
Map(2) {1 => "Gengi", 2 => "Fuzzy"}

Deleting single element is quite similar with both performing it in O(1) time, however, to remove all the elements from an object we'll have to traverse the object and delete all elements one by one, whereas we can directly do so using the clear() method in map,

删除单个元素与两者都在O(1)时间内执行非常相似 ,但是,要从对象中删除所有元素,我们必须遍历该对象并逐个删除所有元素,而我们可以直接使用map中的clear()方法,

myMap.clear();
console.log(myMap);

Output

输出量

Map(0) {}

Getting the size is also relatively easier in maps.

在地图中获取尺寸也相对容易。

console.log(myMap.size);
console.log(Object.keys(obj1).length);

Output

输出量

0
2

You might think maps have simpler syntax so why not use them everywhere? However, objects are more popular and have a direct reference with JSON. Plus storing duplicate items comes in handy when using an object. So it really depends on what your use case for the data structure is, both can do a pretty great job is used appropriately!

您可能会认为地图的语法更简单,为什么不在各处使用地图呢? 但是,对象更受欢迎,并且具有JSON的直接引用。 使用对象时,加上存储重复项非常方便。 因此,这实际上取决于您的数据结构用例,正确使用两者都可以做得很好!

翻译自: https://www.includehelp.com/code-snippets/maps-vs-objects-in-javascript.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377814.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

深发展银行编码器(解剖)

电池拆下来,再装上,还能继续用下,不会被重置 转载于:https://www.cnblogs.com/ahuo/archive/2012/01/25/2329485.html

关于$.getJson

这是一个Ajax函数的缩写,这相当于: 123456$.ajax({dataType: "json",url: url,data: data,success: success});数据会被附加到一个查询字符串的URL中,发送到服务器。如果该值的data参数是一个普通的对象,它会转换为一个字符串并使用…

leetcode 1. 两数之和 思考分析

1、题目 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。 2、思考分析 双for循环的时间复杂度…

六、逻辑回归

一、何为逻辑回归 逻辑回归可以简单理解为是基于多元线性回归的一种缩放。 多元线性回归y的取值范围在(-∞,∞),数据集中的x是准确的一个数值。 用这样的一个数据集代入线性回归算法当中会得到一个模型。 这个模型所具备的功能就是当有人给这个模型一个…

C# 调用Windows API实现两个进程间的通信

使用Windows API实现两个进程间(含窗体)的通信http://blog.csdn.net/huangxinfeng/article/details/5513608 从C#下使用WM_COPYDATA传输数据说到Marshal的应用http://www.cnblogs.com/jiangyh-is-me/archive/2006/06/05/417381.html 问题解决&#xff1a…

如何在Golang中返回错误?

In Golang, we return errors explicitly using the return statement. This contrasts with the exceptions used in languages like java, python. The approach in Golang to makes it easy to see which function returns an error? 在Golang中,我们使用return…

leetcode 383. 赎金信 思考分析

题目 给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串 ransom 能不能由第二个字符串 magazines 里面的字符构成。如果可以构成,返回 true ;否则返回 false。 (题目说明:为了不暴露赎金信字迹&#x…

Numpy(科学计算库)---讲解

本内容来自《跟着迪哥学Python数据分析与机器学习实战》,该篇博客将其内容进行了整理,加上了自己的理解,所做小笔记。若有侵权,联系立删。 迪哥说以下的许多函数方法都不用死记硬背,多查API多看文档,确实&a…

仿安居客好租网房产源码

网站设计简约,大方,清爽开发技术:ASP.NET3.5,SQL2005,VS2008功能简介1、小区,二手房,租房小区发布,编辑,修改功能,图片批量上传2、支持积分,发布房源、发布论坛帖子可获得…

Eclipse中classpath和deploy assembly的文件位置

classpath的配置信息存储在工程根目录下的.classpath文件 deploy assembly配置信息存储在工程目录下的.settings\org.eclipse.wst.common.component文件中转载于:https://www.cnblogs.com/jubincn/p/3381087.html

LeetCode 454. 四数相加 II 思考分析

题目 给定四个包含整数的数组列表 A , B , C , D ,计算有多少个元组 (i, j, k, l) ,使得 A[i] B[j] C[k] D[l] 0。 为了使问题简单化,所有的 A, B, C, D 具有相同的长度 N,且 0 ≤ N ≤ 500 。所有整数的范围在 -228 到 228 - 1 之间&am…

ruby 嵌套函数_Ruby嵌套直到循环带有示例

ruby 嵌套函数嵌套直到循环 (Nested until loop) Alike for, while, and do...while, until loop can also be nested for meeting the specific purpose. In this type of nesting, two until loops work in the combination such that at first, the outer loop is triggered…

SQL Server 2008中SQL增强功能点Merge

sql server 2008提供了一个增强的Sql命令Merge,用法参看MSDN。能根据两张表数据的不同,对两张表进行数据执行插入,更新或删除等操作,一般用在数据的抽取,例如,根据在另一个表中找到的差异在一个表中插入、更新或删除行…

Numpy(科学计算库)---小练习

1,打印当前Numpy版本 import numpy as np print (np.__version__) """ 1.22.3 """2,构造一个全零的矩阵,并打印其占用的内存大小 yy np.zeros((3,3)) yy """ array([[0., 0., 0.],[0., 0., …

【转】Spark源码分析之-scheduler模块

原文地址:http://jerryshao.me/architecture/2013/04/21/Spark%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90%E4%B9%8B-scheduler%E6%A8%A1%E5%9D%97/ Background Spark在资源管理和调度方式上采用了类似于Hadoop YARN的方式,最上层是资源调度器,它负…

【C++grammar】析构、友元、拷贝构造函数、深浅拷贝

目录1、Destructor(析构函数)在堆和栈(函数作用域与内嵌作用域)上分别创建Employee对象,观察析构函数的行为2、Friend(友元)1、为何需要友元2、友元函数和友元类3、关于友元的一些问题3、Copy Constructor(…

用mstsc /console 强行“踢”掉其它在线的用户

由于公司有很多windows服务器,而且有很大一部分不在国内,所以经常需要使用远程桌面进行连接,这其中,就会经常遇到因为超出了最大连接数,而不能连接的事情,其中最头痛的就是,在连接国外的服务器时…

set vector_Java Vector set()方法与示例

set vector向量类set()方法 (Vector Class set() method) set() method is available in java.util package. set()方法在java.util包中可用。 set() method is used to replace the old element with the given element (ele) when it exists otherwise it sets the given ele…

Android PreferenceActivity 使用

我想大家对于android的系统配置界面应该不会陌生吧,即便陌生,那么下面的界面应该似曾相识吧,假若还是不认识,那么也没有关系,我们这一节主要就是介绍并讲解android 中系统配置界面的使用,相信大家看完本节后…

Pandas(数据分析处理库)---讲解

本内容来自《跟着迪哥学Python数据分析与机器学习实战》,该篇博客将其内容进行了整理,加上了自己的理解,所做小笔记。若有侵权,联系立删。 迪哥说以下的许多函数方法都不用死记硬背,多查API多看文档,确实&a…