MonthDay now(Clock clock) example
Description
MonthDay now(Clock clock)
creates the current
month-day from the specified clock.
Syntax
now
has the following syntax.
public static MonthDay now(Clock clock)
Example
The following example shows how to use now
.
import java.time.Clock;
import java.time.MonthDay;
//from www . ja v a2 s . c om
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.