MonthDay toString() example
Description
MonthDay toString()
Outputs this month-day as a String, such as --12-03.
The output will be in the format --MM-dd.
Syntax
toString
has the following syntax.
public String toString()
Example
The following example shows how to use toString
.
import java.time.MonthDay;
/* w w w .j ava 2s . co m*/
public class Main {
public static void main(String[] args) {
MonthDay m = MonthDay.now();
System.out.println(m.toString());
}
}
The code above generates the following result.