-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion48.java
More file actions
42 lines (38 loc) · 747 Bytes
/
Question48.java
File metadata and controls
42 lines (38 loc) · 747 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
// program to demonstrate creation of multiple child threads.
class A extends Thread {
public void run () {
try {
for(int i = 1; i <= 5; i++) {
System.out.println (5 * i);
Thread.sleep (500);
}
}
catch (InterruptedException e) {
System.out.println ("Thread interrupted!");
}
}
}
class B extends Thread {
public void run () {
for(int j = 1; j <= 4; j++) {
System.out.println ("j = " + j);
}
}
}
class C extends Thread {
public void run () {
for(int k = 1; k <= 5; k++) {
System.out.println ("k = " + k);
}
}
}
class Question48 {
public static void main (String[] args) {
A obj1 = new A ();
B obj2 = new B ();
C obj3 = new C ();
obj1.start ();
obj2.start ();
obj3.start ();
}
}