01: package test3;
02:
03: import java.util.ArrayList;
04: import java.util.List;
05:
06: public class CCTest3 {
07:
08: public static void main(String[] args) {
09: List<String> l;
10:
11: l = new ArrayList<String>();
12:
13: l.add("Hello, world");
14:
15: for (String s : l) {
16: s.indexOf("Hello"); //Check the methods provided after the dot
17: }
18: }
19: }
|