Created
December 23, 2018 18:40
-
-
Save pragmatictesters/75e15c7155adf21402dce35985f1b947 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example.java8; | |
import java.time.Duration; | |
import java.time.Instant; | |
import java.time.temporal.TemporalUnit; | |
public class GetDuration { | |
public static void main(String[] args) throws InterruptedException { | |
Instant start = Instant.now(); | |
Thread.sleep(1000); | |
Instant end = Instant.now(); | |
Duration elapsed = Duration.between(start, end); | |
System.out.printf("Elapsed time " + elapsed.toMillis()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment