-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSleepDemo.java
More file actions
40 lines (30 loc) · 880 Bytes
/
SleepDemo.java
File metadata and controls
40 lines (30 loc) · 880 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
package com.jspiders.multithreading.sleep;
public class SleepDemo {
public static void main(String[] args) {
String str = "This is the magic of sleep() method";
char[] charArray = str.toCharArray();
//for (int j = 0; j < 5; j++)
for(int j=0;j < 3 ;j++){
for (int i = 0; i < str.length(); i++) {
System.out.print(charArray[i]);
try {
Thread.sleep(150);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
System.out.println(" ");
for (int i = 0; i < str.length(); i++) {
System.out.print(charArray[i]);
try {
Thread.sleep(250);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
System.out.println();
}
}
}