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