Advertisement
riking

Untitled

May 16th, 2012
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. (class is template of T)
  2.  
  3. 1 public T rangeCheck(int index)
  4. 2   throws ArrayIndexOutOfBoundsException
  5. 3 {
  6. 4   if (index < 0 || index >= this.length)
  7. 5   {
  8. 6       throw new ArrayIndexOutOfBoundsException();
  9. 7   }
  10. 8   return rawGet(index);
  11. 9 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement