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 an int[][] object. It is defined in my code as below:

public int[][] position = {
    {20, 30}, {73, 91},
    {82, 38}
};

Would it be possible to get the value of the first value (on the left) within each of the pairs of parentheses and store them as individual int variables using a for loop? Basically, is it possible to extract the "20", "73" and "82" and store them into int variables individually?

share|improve this question
3  
I apologize if my question seems vague. I am new to Java and I would assume that my terminology is not yet up to scratch. Thank you for your patience. – Dillon Chaffey Dec 24 '11 at 14:42
1  
I upvoted, because you are new and you wrapped the code into code blocks. – Adil Soomro Dec 24 '11 at 14:56
@Adil Soomro: Thanks mate. I saw the code icon and it made it heaps easier to read so I clicked it. I will keep doing that then. – Dillon Chaffey Dec 24 '11 at 15:28

1 Answer

up vote 12 down vote accepted
for(int[] x : position){
  int y = x[0];
  // Do something with y...
}

Or just:

int x = position[0][0];
int y = position[1][0];
int y = position[2][0];
share|improve this answer
That is EXACTLY what I have been looking for. You're a lifesaver mate. Thanks a lot! Have a good one and Merry Christmas. – Dillon Chaffey Dec 24 '11 at 14:52
@DillonChaffey: if that did indeed help you solve your problem, please consider accepting it - see how does accepting an answer work for what that's all about. – Mat Dec 24 '11 at 15:00
@ziesemer: I just learned how to accept answers and accepted your's. Thanks again for your help. – Dillon Chaffey Dec 24 '11 at 15:30

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.