I am a beginner to java, and need some help.
I am trying to convert an Abstract Data type Foo which is an associated list to an Arraylist of the strings B. How do yo
You should be able to do something like:
ArrayList list = new ArrayList(); for( String s : foo ) { list.add(s); }