个人简介

Echo Blog


江湖无名 安心练剑
  • Github 开源项目 jdk7 编译改造-02
    改造目标1 使用 jdk7 重新编译 jdk7 相关的项目。 基础 maven-archetype 这个不用处理 Heaven Done API Done log-integration Done 测试相关 JunitPerf junit4 Done Junit5 Done DataFactory https://g...
    2019-02-25 06:33:11 | Tool
  • Github 开源项目
    基础 maven-archetype 所有的开源框架的项目原型 api 项目版本管理 heaven 基础工具包。 paradise 的接班人。 log-integration 日志整合框架 Charming 希望对文档进行格式化,开发中。。。 测试相关 Data-Factory 为单元测试提供初始化数据。 缺少:只...
    2019-02-25 06:33:11 | Tool
  • Github DNS 访问加速
    如何上传本地代码到 github 1、建立git仓库 git init 2、添加代码到本地仓库 git add . git commit -m "[Init] init git" 3、github 创建自己的项目 不赘述 4、将本地代码和远程仓库关联 git remote add origin https://github.com/houbb/XXX 5、更新代码 ...
    2019-02-25 02:58:55 | Tool
  • 数据结构 06 TreeSet + NavigableMap 源码分析
    TreeSet 类定义 基于 TreeMap 的实现。 /** * A {@link NavigableSet} implementation based on a {@link TreeMap}. * The elements are ordered using their {@linkplain Comparable natural * ordering}, or by a ...
    2019-02-19 06:50:42 | Data-Struct
  • 数据结构 05 HashSet 源码分析
    HashSet 类定义 /** * This class implements the {@code Set} interface, backed by a hash table * (actually a {@code HashMap} instance). It makes no guarantees as to the * iteration order of the se...
    2019-02-19 06:50:42 | Data-Struct
  • 数据结构 04 Stack 源码分析
    Stack 类定义 /** * The <code>Stack</code> class represents a last-in-first-out * (LIFO) stack of objects. It extends class <tt>Vector</tt> with five * operations that allo...
    2019-02-19 06:50:42 | Data-Struct
  • 数据结构 03 LinkedList 源码分析
    LinkedList 类定义 public class LinkedList<E> extends AbstractSequentialList<E> implements List<E>, Deque<E>, Cloneable, java.io.Serializable 和 ArrayList 的接口实现还是有区别的...
    2019-02-19 06:50:42 | Data-Struct
  • 数据结构 02 ArrayList 源码分析
    ArrayList 以前学习数据结构的时候,自己通过实现过 ArrayList。 但是 jdk 中的源码没有仔细研读过。 本篇查缺补漏,好好学习一下。 jdk 版本为 11 类定义 public class ArrayList<E> extends AbstractList<E> implements List<E>, ...
    2019-02-19 06:50:42 | Data-Struct