public static boolean isOutOfBounds(int index, int length, int capacity) {
return (index | length | (index + length) | (capacity - (index + length))) < 0;
}
验证一个数组(buffer)中 capacity,index,length 是否合法的方法(代码来自Netty 的byteBuf)
Posted foxhasdream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了验证一个数组(buffer)中 capacity,index,length 是否合法的方法(代码来自Netty 的byteBuf)相关的知识,希望对你有一定的参考价值。
以上是关于验证一个数组(buffer)中 capacity,index,length 是否合法的方法(代码来自Netty 的byteBuf)的主要内容,如果未能解决你的问题,请参考以下文章