Year atMonthDay() method in Java
The atMonthDay(MonthDay) method of Year class in Java combines the current year object with a month-day object passed as parameter to it to create a LocalDate object.
Syntax:
public LocalDate atMonthDay(MonthDay monthDay)
Parameter: This method accepts a single parameter monthDay. It is the MonthDay object which specifies a month-day to use. It takes a valid MonthDay object and cannot be NULL.
Return Value: It returns a LocalDate object formed by the current year object and a valid MonthDate object passed as parameter to the function.
Note: If the current year is not a leap year and the MonthDay object passed as parameter specifies “29th February”, it will be automatically rounded to “28th February” in the resulting LocalDate object.
Below programs illustrate the atMonthDay(MonthDay) method of Year in Java:
Program 1:
// Program to illustrate the atMonthDay(MonthDay) method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Creates a Year object Year thisYear = Year.of( 2017 ); // Creates a MonthDay object MonthDay monthDay = MonthDay.of( 9 , 15 ); // Creates a LocalDate with this // Year object and MonthDay passed to it LocalDate date = thisYear.atMonthDay(monthDay); System.out.println(date); } } |
2017-09-15
Program 2: Since 2018 is not a leap year, the day 29 will be rounded off to 28 in the below program.
// Program to illustrate the atMonthDay(MonthDay) method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Creates a Year object Year thisYear = Year.of( 2018 ); // Creates a MonthDay object MonthDay monthDay = MonthDay.of( 2 , 29 ); // Creates a LocalDate with this // Year object and MonthDay passed to it LocalDate date = thisYear.atMonthDay(monthDay); System.out.println(date); } } |
2018-02-28
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#atMonthDay-java.time.MonthDay-
Recommended Posts:
- Year get() method in Java with Examples
- Year isValidMonthDay() method in Java
- Year until() Method in Java with Examples
- Year atDay() method in Java
- Year atMonth(int) method in Java
- Year of() method in Java with Examples
- Year now() method in Java with examples
- Year from() Method in Java with Examples
- Year with() Method in Java with Examples
- Year adjustInto() Method in Java with Examples
- Year getValue() method in Java with Examples
- Year format() method in Java with Examples
- Year length() method in Java with Examples
- Year isAfter() method in Java with Examples
- Year hashCode() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.