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

ConcurrentHashMap中的2的n次方幂上舍入方法

时间:2014-12-01 12:54:28      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   ar   color   sp   for   

最近看JDK中的concurrentHashMap类的源码,其中有那么一个函数:

/**
     * Returns a power of two table size for the given desired capacity.
     * See Hackers Delight, sec 3.2
     */
    private static final int tableSizeFor(int c) {
        int n = c - 1;
        n |= n >>> 1;
        n |= n >>> 2;
        n |= n >>> 4;
        n |= n >>> 8;
        n |= n >>> 16;
        return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
    }

看不明白这是做什么的,但是后来我查看了《hackers delight》(中译:高效程序的奥秘)这本书,才知道这个函数是用来计算c的上舍入到2的n次幂。书上的函数如下图:

bubuko.com,布布扣

我也还不明白这里面的数学原理是什么,不过已经把《hackers delight》加入书单,等搞明白了再更新。

我的渣Github

ConcurrentHashMap中的2的n次方幂上舍入方法

标签:des   style   blog   http   io   ar   color   sp   for   

原文地址:http://www.cnblogs.com/katsura/p/4134737.html

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