MonthDay now() example
Description
MonthDay now()
creates the current month-day from
the system clock in the default time-zone.
Syntax
now
has the following syntax.
public static MonthDay now()
Example
The following example shows how to use now
.
import java.time.MonthDay;
//from w ww . jav a2s. co m
public class Main {
public static void main(String[] args) {
MonthDay m = MonthDay.now();
System.out.println(m);
}
}
The code above generates the following result.