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

I am using a short[] array:

short[] buffer = new short[bufferSize];

I have a method that takes as a parameter type double[], so I cannot pass it as-is. I need to make it into a double[]. The best thing that I've done is to make a new object and loop through and convert, like this:

double[] transformed = new double[bufferSize];

for (int j=0;j<bufferSize;j++) {
    transformed[j] = (double)buffer[j];
}

I have not yet even tested the above approach, but I am wondering if there is a better way to do this?

Thanks.

share|improve this question
1  
that is the way to do it. – MeBigFatGuy Dec 13 '10 at 0:16
For something this simple, I wouldn't even waste time looking for an alternative. – Stephen C Dec 13 '10 at 0:26
I which java would give uns some operator like short[] arr=new short[blub]; int[] otherArr=new int[blub]; otherArr[]=(int)arr; or something. ;-) – InsertNickHere Dec 13 '10 at 7:00

2 Answers

up vote 4 down vote accepted

That's as good as it gets, though you can just use buffer.length instead of buffersize.

share|improve this answer

The answer provided by Laurence is correct and should be accepted, but it's worth noting that there is more than one way to copy an array in Java. See this article for an explanation of each method.

  • use the various copyOf and copyOfRange methods of the Arrays class
  • use System.arraycopy - useful when copying parts of an array
  • call its clone method, and do a cast - the simplest style, but only a shallow clone is performed
  • use a for loop - more than one line, and needs a loop index
share|improve this answer
those details are not relevant here. The OP does not need a regular array copy. – Stephen C Dec 13 '10 at 0:43
I just thought it would be useful supplementary data - thats why I said Laurence's answer should be accepted. – Amir Afghani Dec 13 '10 at 0:44
Thank you it's good to know! – jeffp Dec 13 '10 at 1:05

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.