public class Test01 {
public static void main(String[] args) {
while(true){
try {
Thread.currentThread().sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("now is " + System.currentTimeMillis());
}
}
}
public class Test01 {
public static void main(String[] args) {
while(true){
try {
Thread.currentThread().sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("now is " + System.currentTimeMillis());
}
}
}