I have the following class definition:
public class kdtrees{
...
public static class DataPoints{
...
}
}
I can create objects of the inner class using:
kdtrees.DataPoint point = new kdtrees.DataPoint();
I want to make point, an ArrayList so that I can instantiate multiple objects of the inner class. How can I do it?
kdtreesshould be calledKdTrees.