forked from teddyzhang1976/ThinkInJava4thSampleCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayListDisplay.java
More file actions
15 lines (14 loc) · 492 Bytes
/
ArrayListDisplay.java
File metadata and controls
15 lines (14 loc) · 492 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//: strings/ArrayListDisplay.java
package strings; /* Added by Eclipse.py */
import generics.coffee.*;
import java.util.*;
public class ArrayListDisplay {
public static void main(String[] args) {
ArrayList<Coffee> coffees = new ArrayList<Coffee>();
for(Coffee c : new CoffeeGenerator(10))
coffees.add(c);
System.out.println(coffees);
}
} /* Output:
[Americano 0, Latte 1, Americano 2, Mocha 3, Mocha 4, Breve 5, Americano 6, Latte 7, Cappuccino 8, Cappuccino 9]
*///:~