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