Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some library of classes, working with my data, which is being read into buffer. Is it possible somehow to avoid copying arrays again and again, passing parts of data deeper and deeper into processing methods? Well, it sounds strange, but in my particular case, there's a special writer, which divides data into blocks and writes them individually into different locations, so it just performs System.arraycopy, gets what it needs and calls underlying writer, with that new sub array. And this happens many times. What is the best approach to refactor such code?

share|improve this question

5 Answers

up vote 8 down vote accepted

Many classes in Java accept a subset of an arrays as parameter. E.g. Writer.write(char cbuf[], int off, int len). Maybe this already suffices for your usecase.

share|improve this answer
This is the simplest approach, so I will try it. – Shaman Aug 5 '10 at 7:46

Arrays.asList(array).subList(x, y).

It doesn't give you an array, but a List, which is far more flexible.

share|improve this answer
   
The whole point of the question is to avoid copying. What do you think the above does? – Theo May 10 '12 at 13:39
9  
Returns a fixed-size list backed by the specified array. I accept your apology. – Ricky Clarkson May 10 '12 at 21:57
1  
Oh! Thank you :) – Theo May 11 '12 at 10:41

Have a look on Arrays.copyOfRange(***) methods.

share|improve this answer
4  
From javadoc: "Copies the specified range of the specified array into a new array", which is not what the OP wants. – f1sh Aug 3 '10 at 11:28

You could take the same approach as the String class takes; create a class for immutable objects which are constructed from an array, a start offset and an end offset which offers access to the sub-array. The user of such an object does not have to know the distinction between the whole array or a sub-array. The constructor does not have to copy the array, just store the array reference and its boundaries.

share|improve this answer

You could use (ArrayList).subList(value1, value2) i belive, perhaps that could help in your case? That is ofcourse if you want to use an ArrayList.

share|improve this answer
was this answer not already given? – dldnh Apr 3 '12 at 10:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.