MonthDay now(Clock clock)
creates the current
month-day from the specified clock.
now
has the following syntax.
public static MonthDay now(Clock clock)
The following example shows how to use now
.
import java.time.Clock; import java.time.MonthDay; // w w w .j a v a 2s. c o m public class Main { public static void main(String[] args) { MonthDay m = MonthDay.now(Clock.systemUTC()); System.out.println(m); } }
The code above generates the following result.