Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试计算 JSONArray 中的元素数量并在浏览器上以 json 形式打印响应。
JSONArray ja = new JSONArray(somestring_withjsonarray); objList.setCount(ja.length());
这给出了数组中正确数量的元素,但我想知道为什么它将浏览器上的输出显示为 "count": "3" (带双引号),而不是 "count": 3 (因为 count 是类型诠释)。
为什么会这样?