-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultithread.java
117 lines (109 loc) · 2.53 KB
/
Multithread.java
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import java.io.*;
// class MultithreadingDemo implements Runnable
// {
// public void run()
// {
// try
// {
// // Displaying the thread that is running
// System.out.println ("Thread " +
// Thread.currentThread().getId() +
// " is running");
// }
// catch (Exception e)
// {
// // Throwing an exception
// System.out.println ("Exception is caught");
// }
// }
// }
// // Main Class
// class Multithread
// {
// public static void main(String[] args)
// {
// int n = 8; // Number of threads
// for (int i=0; i<8; i++)
// {
// Thread object = new Thread(new MultithreadingDemo());
// object.start();
// }
// }
// }
// Java code for thread creation by extending
// the Thread class
// class MultithreadingDemo extends Thread
// {
// public void run()
// {
// try
// {
// // Displaying the thread that is running
// System.out.println ("Thread " +
// Thread.currentThread().getId() +
// " is running");
// }
// catch (Exception e)
// {
// // Throwing an exception
// System.out.println ("Exception is caught");
// }
// }
// }
// // Main Class
// public class Multithread
// {
// public static void main(String[] args)
// {
// int n = 8; // Number of threads
// for (int i=0; i<8; i++)
// {
// MultithreadingDemo object = new MultithreadingDemo();
// object.start();
// }
// }
// }
class Odd extends Thread
{
public void run()
{
try
{
for(int i=1;i<20;i+=2)
{
System.out.println("ODD NUMBER:\t"+i);
Thread.sleep(500);
}
}
catch(Exception e)
{
System.out.println("Error");
}
}
}
class Even extends Thread
{
public void run()
{
try
{
for(int i=0;i<20;i+=2)
{
System.out.println("EVEN NUMBER:\t"+i);
Thread.sleep(500);
}
}
catch(Exception e)
{
System.out.println("Error");
}
}
}
class Multithread {
public static void main(String[] args) {
Odd od = new Odd();
Even ev = new Even();
od.start();
ev.start();
}
}