上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 57 下一页
摘要: http://www.excelhome.net/lesson/animation/excel/1948.html 阅读全文
posted @ 2021-04-04 13:55 毛会懂 阅读(48) 评论(0) 推荐(0) 编辑
摘要: @Value("${get.lock.max.time}")private Integer getLockMax;@Value("${get.lock.sleep}")private Long getLockSleep;@Resourceprivate RedisTemplate<String, O 阅读全文
posted @ 2021-04-01 15:25 毛会懂 阅读(618) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/qq_34396672/article/details/112359366 https://article.itxueyuan.com/1j7AOj 阅读全文
posted @ 2021-03-31 16:37 毛会懂 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/m0_46485771/article/details/104869968 https://blog.csdn.net/fly_fly_zhang/article/details/90451147 https://zhuanlan.zhihu.co 阅读全文
posted @ 2021-03-30 16:29 毛会懂 阅读(43) 评论(0) 推荐(0) 编辑
摘要: <if test="dtEnum == @com.xxx.xxx.TestTypeEnum@HOUR"> DATE_FORMAT(TM,'%Y-%m-%d %H') as keyStr, </if> TestTypeEnum定义如下: HOUR("hour"), DAY("day"), MONTH( 阅读全文
posted @ 2021-01-29 18:49 毛会懂 阅读(2826) 评论(1) 推荐(0) 编辑
摘要: /** * @desc: 自定义最小索引优先队列,可修改,删除索引对应的值 * @author: 毛会懂 * @create: 2021-01-06 17:20:00 **/ public class MyMinIndexPriorityQueue<T extends Comparable<T>> 阅读全文
posted @ 2021-01-14 19:16 毛会懂 阅读(110) 评论(0) 推荐(0) 编辑
摘要: /** * 单例模式之双检锁 * @author ring2 * 懒汉式升级版 */ public class Singleton3 { private static volatile Singleton3 instance; private Singleton3() {} public stati 阅读全文
posted @ 2021-01-10 23:04 毛会懂 阅读(449) 评论(0) 推荐(0) 编辑
摘要: /** * @desc: 自定义索引优先队列,可修改,删除索引对应的值 * @author: 毛会懂 * @create: 2021-01-06 17:20:00 **/ public class MyIndexPriorityQueue<T extends Comparable<T>> { pri 阅读全文
posted @ 2021-01-07 13:41 毛会懂 阅读(76) 评论(0) 推荐(0) 编辑
摘要: ** * @desc: 最小优先队列,值越小,优先级越高,其实就是构造小顶堆 * @author: 毛会懂 * @create: 2021-01-06 16:34:00 **/public class MyMinPriorityQueue<T extends Comparable<T>> { pri 阅读全文
posted @ 2021-01-07 13:34 毛会懂 阅读(147) 评论(0) 推荐(0) 编辑
摘要: /** * @desc: 最大优先队列,值越大,优先级越高,其实就是构造大顶堆 * @author: 毛会懂 * @create: 2021-01-06 16:32:00 **/ public class MyMaxPriorityQueue<T extends Comparable<T>> { p 阅读全文
posted @ 2021-01-07 13:33 毛会懂 阅读(86) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 57 下一页