-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMultiple_thread_creation.java
84 lines (79 loc) · 1.71 KB
/
Multiple_thread_creation.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
import java.util.Random;
class thread1 implements Runnable
{
public void run()
{
genrerate();
}
void genrerate()
{
boolean condition = true;
try
{
while (condition)
{
Thread.sleep(1000);
Random r1 = new Random();
int integer = r1.nextInt(100);
System.out.println("Random number generated is "+integer);
if (integer %2 == 0) //Thread 2 creation
{
thread2 t_2= new thread2(integer);
Thread t2 = new Thread(t_2);
t2.start();
}
else //Thread3 creation
{
thread3 t_3= new thread3(integer);
Thread t3 = new Thread(t_3);
t3.start();
}
}
}
catch(Exception e)
{
System.out.println(e);
}
}
}
class thread2 implements Runnable
{
int num;
thread2(int integer)
{
num = integer;
}
public void run()
{
for (int i=1; i<=num; i++)
{
if(i%2 ==0)
System.out.println(i);
}
}
}
class thread3 implements Runnable
{
int num;
thread3(int integer)
{
num = integer;
}
public void run()
{
for (int i=1; i<=num; i++)
{
if(i%2 !=0)
System.out.println(i);
}
}
}
public class Multiple_thread_creation
{
public static void main(String args[])
{
thread1 t_1 = new thread1();
Thread t1 =new Thread(t_1);
t1.start();
}
}