Array inside of Arrays; Java (Help with Lab Assignment)
Posted
by Adam
on Stack Overflow
See other posts from Stack Overflow
or by Adam
Published on 2010-03-13T01:12:07Z
Indexed on
2010/03/13
1:17 UTC
Read the original article
Hit count: 262
We are working on a lab assignment for my CS&E class and I think I can ask this question without going into detail of the entire lab requirements, but is it possible for an array to be inside of an array? For example, would this work:
int [] arrayOne = new int[3];
arrayOne[0] = Start of an array
If this is possible how do you go about doing it?
© Stack Overflow or respective owner