Java中的MonthDay toString()方法

可以使用toString()Java中MonthDay类中的方法获取MonthDay对象的字符串值。此方法不需要任何参数,它返回MonthDay对象的字符串值。

演示此的程序如下所示-

示例

import java.time.*;
public class Demo {
   public static void main(String[] args) {
      MonthDay md = MonthDay.parse("--02-22");
      System.out.println("The MonthDay is: " + md.toString());
   }
}

输出结果

The MonthDay is: --02-22

现在让我们了解上面的程序。

使用方法获得MonthDay的字符串值,toString()然后打印该值。演示这的代码片段如下-

MonthDay md = MonthDay.parse("--02-22");
System.out.println("The MonthDay is: " + md.toString());