Java Date Time - MonthDay now(Clock clock) example








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;
//  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.