-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDougSmashTest.java
More file actions
48 lines (42 loc) · 905 Bytes
/
DougSmashTest.java
File metadata and controls
48 lines (42 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import Doug.DougDict;
import Doug.DougSmasher;
import java.util.concurrent.ThreadPoolExecutor;
import java.lang.InterruptedException;
import java.lang.Thread;
import java.lang.Integer;
public class DougSmashTest
{
public DougSmashTest(int bleh)
{
DougDict a = new DougDict("test");
DougSmasher b = new DougSmasher(a, bleh);
//ThreadPoolExecutor c = new ThreadPoolExecutor();
Thread thing = new Thread(new Runnable()
{
public void run()
{
String temp = new String();
while(true)
{
try
{
temp = b.get();
}
catch(InterruptedException e)
{
System.exit(1);
}
System.out.println(temp);
}
}
});
System.err.println("Running Thread");
thing.start();
System.err.println("Making all the strings");
b.smashAllWords();
}
public static void main(String[] args)
{
new DougSmashTest(Integer.parseInt(args[0]));
}
}