ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/IteratorLoops.java
(Generate patch)

Comparing jsr166/src/test/loops/IteratorLoops.java (file contents):
Revision 1.10 by jsr166, Sun Oct 21 06:40:21 2012 UTC vs.
Revision 1.13 by jsr166, Mon Aug 10 07:24:02 2015 UTC

# Line 22 | Line 22 | public final class IteratorLoops {
22      static int randomSeed = 3122688;
23  
24      public static void main(String[] args) throws Exception {
25 <        Class klass = Class.forName(args[0]);
25 >        Class<?> klass = Class.forName(args[0]);
26          int n = (args.length <= 1) ? DEFAULT_SIZE : Integer.parseInt(args[1]);
27          int t = (args.length <= 2) ? DEFAULT_TRIALS : Integer.parseInt(args[2]);
28  
# Line 32 | Line 32 | public final class IteratorLoops {
32          System.out.println();
33  
34          Collection<Integer>[] colls =
35 <            (Collection<Integer>[])new Collection[NC];
35 >            (Collection<Integer>[])new Collection<?>[NC];
36  
37          for (int k = 0; k < colls.length; ++k) {
38              Object x = klass.newInstance();
# Line 86 | Line 86 | public final class IteratorLoops {
86      int counts() {
87          int count = 0;
88          for (int k = 0; k < cs.length; ++k) {
89 <            for (Iterator it = cs[k].iterator(); it.hasNext();) {
90 <                if (it.next() != null)
89 >            for (Integer x : cs[k]) {
90 >                if (x != null)
91                      ++count;
92              }
93          }
# Line 122 | Line 122 | public final class IteratorLoops {
122          try { Thread.sleep(500); }
123          catch (Exception ex) { return; }
124      }
125
126
125   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines