原文地址:https://xeblog.cn/articles/96[https://xeblog.cn/articles/96] 开源地址:https://github.c...
![240](https://cdn2.jianshu.io/assets/default_avatar/15-a7ac401939dd4df837e3bbf82abaa2a8.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
原文地址:https://xeblog.cn/articles/96[https://xeblog.cn/articles/96] 开源地址:https://github.c...
原文地址:https://xeblog.cn/articles/92[https://xeblog.cn/articles/92] XEChat-Idea 基于Netty的I...
原文地址:https://xeblog.cn/articles/27 Jsoup简介 Jsoup官网:https://jsoup.org/ jsoup 是一款Java 的HT...
原文地址:https://xeblog.cn/articles/26 注:本文所有代码示例均基于 JDK8。 从源码出发 默认值 通过查看 HashMap 的源码可以得知其默...
原文地址:https://xeblog.cn/articles/25 程序计数器(线程私有) 它是一块较小的内存空间,可以看作是当前线程所执行的字节码的行号指示器。在虚拟机的...
原文地址:https://xeblog.cn/articles/24 新生代收集器 新生代均采用 复制 算法来回收内存。 Serial 收集器 最基本的、发展历史最悠久的单线...
Java并发编程源码分析系列: 分析Java线程池的创建[//www.greatytc.com/p/adbf37ef77bb] 分析Java线程池执行原理[http...
原文地址:https://xeblog.cn/articles/23 确定可回收对象 引用计数法 给对象中添加一个引用计数器,每当有一个地方引用这个对象的时候,计数器的值就加...
六大原则 单一职责原则 里氏替换原则 依赖倒置原则 接口隔离原则 迪米特原则 开闭原则 单一职责 概念:对功能进行分类,代码进行解耦 栗子:一个网络请求框架大致分为:请求类,...