Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 279 Bytes

Set和Map的区别.md

File metadata and controls

15 lines (8 loc) · 279 Bytes

应用场景Set用于数据重组,Map用于数据储存

1、Set

成员不能重复

只有键值没有键名,类似数组

可以遍历,方法有add, delete, has

2、Map

本质上是健值对的集合,类似集合

可以遍历,可以跟各种数据格式转换