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

Clone arr3----> store the result in a variable arr6

static long[] arr6 = (long[])arr3.clone();
share|improve this question
3  
Have you tried it? – ChrisBint Jun 29 '11 at 0:01

1 Answer

The above will work if its declared as part of a class variable and arr3 is also of type long[]. It will not work if this statement is in a static or instance method. Is there any particular reason your making it static. If not you may want to drop static.

You are best off testing it out yourself and making small changes to see what the effect is. That way you will really understand if it works or not.

share|improve this answer

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.