MonthDay 的 from() 方法在 Java 中


可以通过 Java 中 MonthDay 类的 from() 方法使用 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);

更新于: 30-Jul-2019

43 次浏览

开始您的事业

完成课程即可获得认证

开始
广告