The IntBuffer's wrap(int[],int.int) method should throw the IndexOutOfBoundsException for
1)offset > array.length
2)length > array.length - offset
However it throws the IllegalArgumentException.
The same problem exists for LongBuffer too.
The following code shows the problem
int[] intArray = new int[5];
int size = intArray.length;
try {
IntBuffer intBuf = IntBuffer.wrap(intArray,size,1);
}catch (IndexOutOfBoundsException e) {
System.out.println("IndexOutOfBoundsException thrown");
}catch(IllegalArgumentException e) {
System.out.println("IllegalArgumentException thrown");
}catch(Exception e) {
System.out.println(e.toString()+" thrown");
}
1)offset > array.length
2)length > array.length - offset
However it throws the IllegalArgumentException.
The same problem exists for LongBuffer too.
The following code shows the problem
int[] intArray = new int[5];
int size = intArray.length;
try {
IntBuffer intBuf = IntBuffer.wrap(intArray,size,1);
}catch (IndexOutOfBoundsException e) {
System.out.println("IndexOutOfBoundsException thrown");
}catch(IllegalArgumentException e) {
System.out.println("IllegalArgumentException thrown");
}catch(Exception e) {
System.out.println(e.toString()+" thrown");
}
- duplicates
-
JDK-4471053 (bf) ByteBuffer.wrap(byte[],int,int) raises wrong exception
-
- Closed
-
- relates to
-
JDK-4412595 (bf) CharBuffer: Expected IndexOutOfBoundsException not thrown
-
- Closed
-
-
JDK-4433478 (bf) FloatBuffer.wrap does not throw IndexOutOfBoundsException
-
- Closed
-