I have an array of Integers in Java, I would like use only a part of it. I know in Python you can do something like this array[index:] and it returns the array from the index. Is something like this possible in Java.
|
Use java.util.Arrays class:
startIndex is the initial index of the range to be copied, inclusive |
||||
|
|
|
Yes, you can use Arrays.copyOfRange It does about the same thing (note there is a copy : you don't change the initial array). |
|||||||||||
|
|
If you are using Java 1.6 or greater, you can use
Here is a simple example:
|
||||
|
|
|
You could wrap your array as a list, and request a sublist of it.
|
||||
|
|
|
Check out copyOfRange: http://docs.oracle.com/javase/6/docs/api/java/util/Arrays.html#copyOfRange%28boolean[],%20int,%20int%29 |
|||
|
|
|
You can use something like this: |
||||
|
|