Search:

Type: Posts; User: igniteflow

Search: Search took 0.10 seconds.

  1. [SOLVED] Re: Extracting an How to ArrayList from an ArrayList and convert to int??

    Done it, here's how...



    ArrayList set = new ArrayList();
    List newList = lists.get(0);
    set.add(newList);
    Object[] predators = newList.toArray();
    ...
  2. [SOLVED] Extracting an How to ArrayList from an ArrayList and convert to int??

    Hi,
    I have a method which creates ArrayLists and stores them within an ArrayList as follows:



    ArrayList<ArrayList<Integer>> clusters = new ArrayList<ArrayList<Integer>>();
    ArrayList<Integer>...
Results 1 to 2 of 2