NevermindZZT / cson

基于C语言的json数据映射解析库
MIT License
132 stars 43 forks source link

新功能建议,增加结构体数组支持。 #1

Open GetFreedomPro opened 5 years ago

GetFreedomPro commented 5 years ago

struct test { char id; short num; int max; double value; char name; struct subtest sub[10];<--------------------!!! CsonList list; char str[2]; CsonList charList; CsonList *strList; }; 如果支持了,可能我要没研究透。

NevermindZZT commented 5 years ago

现在不支持结构体数组的,主要考虑到从json解析过来,数量不确定,容易造成数组越界