h**********c 发帖数: 4120 | 1 我老尽量心平气和讨论这些问题,有那些二,害人全组被雷,望珍惜生命安全驾驶。
json 能象xml(more concrete, jaxb,eg.) 一样strong type,或者您有更好的术语?
我老试图解释4.5不等与4.5,后发现在string match (groovy ==) '4.50' 和 '4.5',
长了见识。
json 怎么表达null,您指教,就学了。下次我指教。利益交换。 |
o***g 发帖数: 2784 | 2 http://www.json.org/
这里有定义
【在 h**********c 的大作中提到】 : 我老尽量心平气和讨论这些问题,有那些二,害人全组被雷,望珍惜生命安全驾驶。 : json 能象xml(more concrete, jaxb,eg.) 一样strong type,或者您有更好的术语? : 我老试图解释4.5不等与4.5,后发现在string match (groovy ==) '4.50' 和 '4.5', : 长了见识。 : json 怎么表达null,您指教,就学了。下次我指教。利益交换。
|
h**********c 发帖数: 4120 | 3 Can you please provide some examples?
【在 o***g 的大作中提到】 : http://www.json.org/ : 这里有定义
|
g*****g 发帖数: 34805 | 4 {
"value": null
}
【在 h**********c 的大作中提到】 : 我老尽量心平气和讨论这些问题,有那些二,害人全组被雷,望珍惜生命安全驾驶。 : json 能象xml(more concrete, jaxb,eg.) 一样strong type,或者您有更好的术语? : 我老试图解释4.5不等与4.5,后发现在string match (groovy ==) '4.50' 和 '4.5', : 长了见识。 : json 怎么表达null,您指教,就学了。下次我指教。利益交换。
|
h**********c 发帖数: 4120 | 5 大牛这个俺学了,回去试试
you are the best json developer I have ever seen.
不过偶有一个更stupid 的问题
map = {
"DefinedNotInited":null
}
Then
map.get('someKeyNotExist') == null
map.get("DefinedNotInited") == null
map.get("DefinedAtMySideButNotSentToYou") == null
of course null equals null.
这样不太直观
还是说
json 有没有xml schema一样? 实际就是数据一直性的接口
我比较日期的时候比较日期
比较double 的时候,比较double
比较两个dvd的时候,调用正确的equals
【在 g*****g 的大作中提到】 : { : "value": null : }
|