2009年12月3日星期四

[note]如何限制得到整数的大小

int indexFor(int h, int length)
{
return h & length;
}


只要length是2的次方,那么不论h多到,得到的返回值一定会比length小。

没有评论: