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

Comparing jsr166/src/test/loops/SetBash.java (file contents):
Revision 1.6 by jsr166, Wed Sep 1 07:47:27 2010 UTC vs.
Revision 1.9 by jsr166, Thu Dec 18 18:43:22 2014 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea and Josh Bloch with assistance from members of
3   * JCP JSR-166 Expert Group and released to the public domain, as
4 < * explained at http://creativecommons.org/licenses/publicdomain
4 > * explained at http://creativecommons.org/publicdomain/zero/1.0/
5   */
6   import java.util.*;
7  
# Line 11 | Line 11 | public class SetBash {
11      public static void main(String[] args) {
12          int numItr = Integer.parseInt(args[1]);
13          int setSize = Integer.parseInt(args[2]);
14 <        Class cl = null;
14 >        Class<?> cl = null;
15  
16          try {
17              cl = Class.forName(args[0]);
# Line 19 | Line 19 | public class SetBash {
19              fail("Class " + args[0] + " not found.");
20          }
21  
22 <        boolean synch = (args.length>3);
22 >        boolean synch = (args.length > 3);
23  
24 <        for (int i=0; i<numItr; i++) {
24 >        for (int i = 0; i < numItr; i++) {
25              Set s1 = newSet(cl, synch);
26              AddRandoms(s1, setSize);
27  
# Line 78 | Line 78 | public class SetBash {
78      }
79  
80      // Done inefficiently so as to exercise toArray
81 <    static Set clone(Set s, Class cl, boolean synch) {
81 >    static Set clone(Set s, Class<?> cl, boolean synch) {
82          Set clone = newSet(cl, synch);
83          clone.addAll(Arrays.asList(s.toArray()));
84          if (!s.equals(clone))
# Line 90 | Line 90 | public class SetBash {
90          return clone;
91      }
92  
93 <    static Set newSet(Class cl, boolean synch) {
93 >    static Set newSet(Class<?> cl, boolean synch) {
94          try {
95              Set s = (Set) cl.newInstance();
96              if (synch)
# Line 105 | Line 105 | public class SetBash {
105      }
106  
107      static void AddRandoms(Set s, int n) {
108 <        for (int i=0; i<n; i++) {
108 >        for (int i = 0; i < n; i++) {
109              int r = rnd.nextInt() % n;
110              Integer e = new Integer(r < 0 ? -r : r);
111  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines