fork(1) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. import java.time.*;
  8. import java.time.temporal.*;
  9. import java.time.format.*;
  10.  
  11. /* Name of the class has to be "Main" only if the class is public. */
  12. class Ideone
  13. {
  14. public static void main (String[] args) throws java.lang.Exception
  15. {
  16.  
  17. LocalTime start = LocalTime.parse( "12:03:00" );
  18. LocalTime stop = LocalTime.parse( "00:00:00" );
  19.  
  20. if( stop.equals( LocalTime.MIN ) ) {
  21. stop = LocalTime.MAX ; // `23:59:59.999999999`
  22. }
  23.  
  24. Duration d = Duration.between( start , stop );
  25. d = d.plusNanos( 1 ).withNanos( 0 ) ;
  26.  
  27. System.out.println( "start/stop: " + start + "/" + stop );
  28. System.out.println( "d: " + d );
  29.  
  30. }
  31. }
Success #stdin #stdout 0.14s 4386816KB
stdin
Standard input is empty
stdout
start/stop: 12:03/23:59:59.999999999
d: PT11H57M