摘要:
问题1 :mysql自动将23:59:59.999保存成00:00:00 数据表中时间字段为datetime类型,插入的时间数据为2020-10-29 23:59:59.999,但保存成功后再查看,数据变为2020-10-30 00:00:00。将数据类型换成timestamp,问题同样存在。 原因 阅读全文
摘要:
一、问题提出 1.1 空指针异常 public static void main(String[] args) { Integer switchCode = null; System.out.println(switchCode.equals(1));//空指针异常 } 二、使用enum优雅处理 2 阅读全文
摘要:
一、依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.73</version> </dependency> 二、使用场景 2.1 对象转JSONObject en 阅读全文
摘要:
素数:只能被1和自身整除的数,0、1除外 解法一:暴力算法 直接从2开始遍历,判断是否能被2到自身之间的数整除 public int countPrimes(int n) { int ans = 0; for (int i = 2; i < n; ++i) { ans += isPrime(i) ? 阅读全文