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

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

时间:2015-03-30 01:09:40      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:

 

最近看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次幂。书上的函数如下图:

技术分享

已经把《hackers delight》加入书单。

http://www.cnblogs.com/katsura/p/4134737.html

 

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

标签:

原文地址:http://www.cnblogs.com/softidea/p/4376964.html

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