MonthDay toString()
Outputs this month-day as a String, such as --12-03.
The output will be in the format --MM-dd.
toString
has the following syntax.
public String toString()
The following example shows how to use toString
.
import java.time.MonthDay; // w w w. java 2 s .c o 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.