Php / Python /ECMA 中的基础数据结构定义

语言 数组 /列表 集合 字典 元组
PHP $a = [1,2,3] 需安装扩展库DS (pecl install ds)
$a = new \Ds\Vector([1, 2, 3]);

$d = [
    "foo" => 1,
    "bar" => 2,
];

 
Python a = [1,2,3]

s = {1, 2, 3}

s = set((1, 2, 3))

d = {'foo': 1, 'foo': 2} t = (1, 2, 3, 4, 5)
ECMA a = [1,2,3]

const s=new Set()

const s=new Set([1,2,3])

const map = new Map([['foo', 1 ], [ 'foo', 2 ]])  
         
         
         
         

 

Php / Python /ECMA 中的基础数据结构定义Php / Python /ECMA 中的基础数据结构定义 bennybi 发布了72 篇原创文章 · 获赞 2 · 访问量 2万+ 私信 关注
上一篇:ECMAScript 6,es6 get和set的区别


下一篇:Ecma 118th GA会议手记