Open In App

MonthDay toString() Method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

toString() method of the MonthDay class used to represents this month-day as a String like –08-23.The output will be in the format –MM-dd:
Syntax: 
 

public String toString()

Parameters: This method did not accepts any parameter.
Return value: This method returns a String representation of this MonthDay.
Below programs illustrate the toString() method: 
Program 1: 
 

Java




// Java program to demonstrate
// MonthDay.toString() method
 
import java.time.*;
 
public class GFG {
    public static void main(String[] args)
    {
        // create a MonthDay object
        MonthDay month = MonthDay.parse("--10-12");
 
        // print instance of MonthDay
        System.out.println("YearMonth: "
                           + month.toString());
    }
}


Output: 

YearMonth: --10-12

 

Program 2: 
 

Java




// Java program to demonstrate
// MonthDay.toString() method
 
import java.time.*;
 
public class GFG {
    public static void main(String[] args)
    {
        // create a MonthDay object
        MonthDay month = MonthDay.parse("--08-31");
 
        // print instance of MonthDay
        System.out.println("YearMonth: "
                           + month.toString());
    }
}


Output: 

YearMonth: --08-31

 

References: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#toString()
 



Last Updated : 15 Feb, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads