码迷,mamicode.com
首页 > 编程语言 > 详细

验证一个数组(buffer)中 capacity,index,length 是否合法的方法(代码来自Netty 的byteBuf)

时间:2018-03-31 00:52:16      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:city   iso   return   ret   static   byte   netty   pos   div   

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)

标签:city   iso   return   ret   static   byte   netty   pos   div   

原文地址:https://www.cnblogs.com/foxhasdream/p/8679163.html

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