VOOZH about

URL: https://www.geeksforgeeks.org/java/offsettime-tolocaltime-method-in-java-with-examples/

⇱ OffsetTime toLocalTime() method in Java with examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

OffsetTime toLocalTime() method in Java with examples

Last Updated : 31 Dec, 2018
The toLocalTime() method of OffsetTime class in Java gets the LocalTime part of this date-time. Syntax :
public LocalTime toLocalTime()
Parameter: This method does not accepts any parameter. Return Value: It returns a LocalTime with the same hour, minute, second and nanosecond as this date-time. Below program illustrate the toLocalTime() method:
Output:
Local-time: 03:59:10.258
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#toLocalTime--
Comment