Search:

Type: Posts; User: Norm

Search: Search took 0.11 seconds.

  1. Re: How do you make a list that contains another list?

    If you don't want a 2 dimensional array or an arraylist, I have no idea what will solve your problem.
  2. Re: How do you make a list that contains another list?

    For an ArrayList read the API doc: Java Platform SE 7
    An ArrayList can contain a list of any type of object.

    Also see the tutorial: ...
  3. Re: How do you make a list that contains another list?

    Are you asking how to define a two dimensional array?

    int[][] twoD = new int[2][];
    twoD[0] = new int[6]; // 6 elements for first one
    twoD[1] = new int[123]; // 123 elements for...
Results 1 to 3 of 3