-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion50.java
More file actions
35 lines (32 loc) · 784 Bytes
/
Question50.java
File metadata and controls
35 lines (32 loc) · 784 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
/* program creating 2 threads using Runnable interface, print your name in run ()
method of first class and "Hello Java" in run () method of second thread */
class Hello implements Runnable {
public void run () {
try {
for (int i = 1; i <= 5 ; i++) {
System.out.println ("Ma name Jeff!");
Thread.sleep (500);
}
}
catch (InterruptedException ie) {
System.out.println ("Thread interrupted!");
}
}
}
class Java implements Runnable {
public void run () {
for (int i = 1; i <= 5 ; i++) {
System.out.println ("Hello Java!");
}
}
}
class Question50 {
public static void main (String[] args) {
Hello obj1 = new Hello ();
Java obj2 = new Java ();
Thread t1 = new Thread (obj1);
Thread t2 = new Thread (obj2);
t1.start ();
t2.start ();
}
}