Java中的MonthDay from()方法

可以使用from()Java中MonthDay类中的方法从Temporal对象获取MonthDay对象的实例。此方法需要一个参数,即Temporal对象,它返回从Temporal对象获得的MonthDay对象。

演示此程序如下

示例

import java.time.*;
   public class Main {
      public static void main(String[] args) {
      MonthDay md = MonthDay.from(ZonedDateTime.now());
      System.out.println("The MonthDay is: " + md);
   }
}

输出结果

The MonthDay is: --02-22

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

使用该from()方法从Temporal对象获取MonthDay对象的实例,然后将其显示。演示此代码段如下所示:

MonthDay md = MonthDay.from(ZonedDateTime.now());
System.out.println("The MonthDay is: " + md);