码迷,mamicode.com
首页 > 其他好文 > 详细

HastTable源码分析

时间:2018-06-11 19:32:42      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:led   ESS   是什么   TE   integer   map   ror   value   alter   

Hashtable是什么

1.

static {
/**ssssss**/ String altThreshold = java.security.AccessController.doPrivileged( new sun.security.action.GetPropertyAction( "jdk.map.althashing.threshold")); int threshold; try { threshold = (null != altThreshold) ? Integer.parseInt(altThreshold) : ALTERNATIVE_HASHING_THRESHOLD_DEFAULT; // disable alternative hashing if -1 if (threshold == -1) { threshold = Integer.MAX_VALUE; } if (threshold < 0) { throw new IllegalArgumentException("value must be positive integer."); } } catch(IllegalArgumentException failed) { throw new Error("Illegal value for ‘jdk.map.althashing.threshold‘", failed); } ALTERNATIVE_HASHING_THRESHOLD = threshold; }

 

HastTable源码分析

标签:led   ESS   是什么   TE   integer   map   ror   value   alter   

原文地址:https://www.cnblogs.com/muliti-hu/p/9168618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!