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.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset