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

Comparing jsr166/src/test/loops/UnboundedQueueFillEmptyLoops.java (file contents):
Revision 1.7 by jsr166, Tue Mar 15 19:47:06 2011 UTC vs.
Revision 1.12 by jsr166, Sun Oct 23 03:03:24 2016 UTC

# Line 6 | Line 6
6  
7   import java.util.*;
8   import java.util.concurrent.*;
9 import java.util.concurrent.locks.*;
9   import java.util.concurrent.atomic.*;
10 + import java.util.concurrent.locks.*;
11  
12   public class UnboundedQueueFillEmptyLoops {
13      static int maxSize = 10000;
# Line 16 | Line 16 | public class UnboundedQueueFillEmptyLoop
16      static Integer[] numbers;
17  
18      public static void main(String[] args) throws Exception {
19 <        Class klass = null;
19 >        Class<?> klass = null;
20          if (args.length > 0) {
21              try {
22                  klass = Class.forName(args[0]);
# Line 42 | Line 42 | public class UnboundedQueueFillEmptyLoop
42          oneRun(klass, maxSize);
43  
44          if (total == 0) System.out.print(" ");
45 <   }
45 >    }
46  
47 <    static void oneRun(Class klass, int n) throws Exception {
48 <        Queue<Integer> q = (Queue<Integer>) klass.newInstance();
47 >    static void oneRun(Class<?> klass, int n) throws Exception {
48 >        Queue<Integer> q =
49 >            (Queue<Integer>) klass.getConstructor().newInstance();
50          int sum = total;
51          int m = rng.nextInt(numbers.length);
52          long startTime = System.nanoTime();
# Line 55 | Line 56 | public class UnboundedQueueFillEmptyLoop
56                      m = 0;
57                  q.offer(numbers[m++]);
58              }
59 <            Integer p;
59 <            while ((p = q.poll()) != null)
59 >            for (Integer p; (p = q.poll()) != null; )
60                  sum += p.intValue();
61          }
62          total += sum;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines