摘要: Java基础知识 阅读全文
posted @ 2021-03-11 22:31 chenzufeng 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 工厂模式作用 在工厂模式中,在创建对象时不会对客户端暴露创建逻辑,并且是通过使用一个共同的接口来指向新创建的对象。 需要一辆汽车,可以直接从工厂里面提货,而不用去管这辆汽车是怎么做出来的,以及这个汽车里面的具体实现。 工厂模式可以分为三类: 简单工厂模式(Simple Factory) 工厂方法模式 阅读全文
posted @ 2021-03-11 12:08 chenzufeng 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 主要原因 public class Object { public native int hashCode(); public boolean equals(Object obj) { return (this == obj); } } 默认从Object继承来的hashCode是基于对象的ID实现 阅读全文
posted @ 2021-03-11 01:52 chenzufeng 阅读(663) 评论(0) 推荐(0) 编辑
摘要: 快速排序 阅读全文
posted @ 2021-03-09 11:44 chenzufeng 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 历史、科技 阅读全文
posted @ 2021-03-08 11:34 chenzufeng 阅读(40) 评论(0) 推荐(0) 编辑