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