2022年10月20日
摘要: 在List集合中需要移除指定的元素方法 // list集合 List<String> arr = new ArrayList<String>() { { add("a"); add("b"); add("c"); add("d"); add("e"); } }; System.out.println 阅读全文
posted @ 2022-10-20 21:04 Cetl 阅读(4818) 评论(0) 推荐(0) 编辑
摘要: 在开发中会遇到时间的特殊处理 例如: 时间转换,未来时间(当前时间加上分时天),时间相差 1.时间转换 有时候时间格式不对,不是我们需要的,那就需要转换,转换成这样的 2022-10-21 19:06:51 者转换成时间戳 2022-10-21 19:06:51 所以这我们就需要去做相应的转换了 直 阅读全文
posted @ 2022-10-20 20:13 Cetl 阅读(59) 评论(0) 推荐(0) 编辑