forked from PacktPublishing/Java-Coding-Problems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
67 lines (49 loc) · 1.56 KB
/
Main.java
File metadata and controls
67 lines (49 loc) · 1.56 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package modern.challenge;
public class Main {
public static void main(String[] args) throws InterruptedException {
System.out.println("*** The following snippets of codes will run indefinitely. "
+ "Consider stopping the application manually.\n");
/*
TwoSyncs instance1 = new TwoSyncs();
TwoSyncs instance2 = new TwoSyncs();
new Thread(() -> {
instance1.method1();
}).start();
Thread.sleep(2000);
new Thread(() -> {
instance2.method1();
}).start();
*/
/*
OllCllAndNoLock instance = new OllCllAndNoLock();
new Thread(() -> {
instance.staticMethod();
}).start();
new Thread(() -> {
instance.nonStaticMethod();
}).start();
new Thread(() -> {
instance.notSynchronizedMethod();
}).start();
*/
/*
TwoCll instance1 = new TwoCll();
TwoCll instance2 = new TwoCll();
new Thread(() -> {
instance1.staticMethod1();
}).start();
new Thread(() -> {
instance2.staticMethod2();
}).start();
*/
/*
OllAndCll instance = new OllAndCll();
new Thread(() -> {
instance.staticMethod();
}).start();
new Thread(() -> {
instance.nonStaticMethod();
}).start();
*/
}
}