java集合
所执者唯己
这个作者很懒,什么都没留下…
展开
-
Jprofiler分析性能调优--远程连接服务器服务
java性能监控工具,调优工具,因为现在用IDEA编辑器的比较多,所以选择使用Jprofiler。可以在IDE中安装插件,直接使用监控方式启动。这篇文章主要记录远程连接linux服务器上的服务,进行实时监控cpu,线程 内存等属性变化。1.需要在linux服务器安装和本地版本一致的JProfiler下载地址 https://www.ej-technologies.com/download/jprofiler/version_111我使用的是11.4版本 有破解的注册机可以使用,最新版本还不能原创 2021-07-14 13:56:02 · 1137 阅读 · 1 评论 -
Hashmap源码解析
话不多说,直接看hashmap的put、方法源码 这是jdk1.8的源码 与1.7有所不同。final V putVal(int hash, K key, V value, boolean onlyIfAbsent, boolean evict) { Node<K,V>[] tab; Node<K,V> p; int n, i...原创 2019-10-25 10:16:15 · 83 阅读 · 0 评论