-
白猪掌柜的
并列的数据之间用逗号(”, “)分隔。映射用冒号(”: “)表示。并列数据的集合(数组)用方括号(“[]“)表示。映射的集合(对象)用大括号(”{}”)表示。上面四条规则,就是Json格式的所有内容。例:var json = { "name":"Tom" "age":24 "hobby":[sleep, read, music] "other":{ "other1":1, "other2":2, "other3":[{ "other4":4 "other5":5 }, { "other6":6, "other7":7 }] }}这个去掉外面的“”就是数组,数组里面就一个元素是json对象的元素,然后json对象里面的第三个又是数组!
-
蛊毒传说
1234567891011121314151617var json = { "name":"Tom" "age":24 "hobby":[sleep, read, music] "other":{ "other1":1, "other2":2, "other3":[{ "other4":4 "other5":5 }, { "other6":6, "other7":7 }] }}嵌套数组和对象
-
森林海
用二维数组表示String[][] aa=new String[100][100];name就是 aa[0][0]age就是 aa[1][0]hobby就是 a[2][0] a[2][1] a[2][2]