LocalTime now(Clock clock) example

Description

LocalTime now(Clock clock) gets the current time from the specified clock.

Syntax

now has the following syntax.


public static LocalTime now(Clock clock)

Example

The following example shows how to use now.


import java.time.Clock;
import java.time.LocalTime;
/*w w  w. j  a  v  a 2s .  co m*/
public class Main {
  public static void main(String[] args) {
    LocalTime l = LocalTime.now(Clock.systemUTC());

    System.out.println(l);
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset