https://shimo.im/docs/HVTxKT8dCQGDwKhv/
https://mp.weixin.qq.com/s/gPwa027_prGpw_G1kmbrqw
消灭过多的 if/else
https://mp.weixin.qq.com/s/qryVuAGOF3tmCyr8MAzZJQ
https://mp.weixin.qq.com/s/ufRf8DQQRYQI0q2VxG3hQg
重学设计模式-小傅哥(bugstack)
https://github.com/fuzhengwei/CodeGuide/wiki
- TODO:
在原有的时间工具类上添加一个功能:
- 将时间戳转成 LocalDateTime
即:T 为 long 类型的时候,将其转成 LocalDattime 类型。
Long remindTime = 1534825831L; //时间戳
LocalDateTime dateTime = LocalDateTime.ofEpochSecond(remindTime, 0, ZoneOffset.ofHours(8));
System.out.println("dateTime = " + dateTime);