LocalTime now() example
Description
LocalTime now()
gets the current time from the system clock in
the default time-zone.
Syntax
now
has the following syntax.
public static LocalTime now()
Example
The following example shows how to use now
.
import java.time.LocalTime;
// ww w . j av a 2 s. c o m
public class Main {
public static void main(String[] args) {
LocalTime l = LocalTime.now();
System.out.println(l);
}
}
The code above generates the following result.