摘要:
java接口的方法默认都是public abstract类型, 因此我们在编写接口的实现类的时候,方法的实现前面要显式的加上public访问控制符 阅读全文
摘要:
DRY原则:(don’t repeat yourself): writing code more than once is not a good fit for a lazy developer ;) It also makes your software more difficult to mai 阅读全文
摘要:
https://www.cnblogs.com/huangjuncong/p/9478505.html 阅读全文
摘要:
含义: FIFO:First In First Out,先进先出LRU:Least Recently Used,最近最少使用 LFU:Least Frequently Used,最不经常使用 以上三者都是缓存过期策略。 原理和实现: 一、FIFO按照“先进先出(First In,First Out) 阅读全文
摘要:
https://mvnrepository.com/artifact/com.google.guava/guava/29.0-jre<!-- https://mvnrepository.com/artifact/com.google.guava/guava --><dependency> <grou 阅读全文