摘要: JSONObject put数据之后,排序会发生变化 JSONObject rs = new JSONObject(); rs.put("a",11); rs.put("f",33); rs.put("c",22); 取出来的时候 {"a":11,"c":22,"f":33} JsonObject内 阅读全文
posted @ 2020-03-09 15:07 慕尘 阅读(2138) 评论(0) 推荐(1) 编辑
摘要: Long的值判断是否相等使用 “==”,遇到问题 public class Demo { public static void main(String[] args) { Long m = 1L; Long n = 1L; if (m == n) { System.out.println("m 等于 阅读全文
posted @ 2020-03-09 14:44 慕尘 阅读(2974) 评论(0) 推荐(0) 编辑