Logo

Programming-Idioms

History of Idiom 45 > diff from v50 to v51

Edit summary for version 51 by some_stranger:
[Java] Newer versions (Java 7+) has a more explicit way of doing this.

Version 50

2019-10-14, 12:24:42

Version 51

2020-04-20, 18:20:24

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Illustration

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Illustration
Code
Thread.sleep(5000);
Code
TimeUnit.SECONDS.sleep(5)
Comments bubble
Unit is millisecond