Code: Select all
"dog, cat, bear, elephant, ..., giraffe"
Zum Beispiel
Code: Select all
List strings = new ArrayList();
// Add the data here so strings.get(0) would be equal to
// "dog",strings.get(1) would be equal to "cat" a.s.f.
Code: Select all
"dog, cat, bear, elephant, ..., giraffe"
Code: Select all
List strings = new ArrayList();
// Add the data here so strings.get(0) would be equal to
// "dog",strings.get(1) would be equal to "cat" a.s.f.