java.time.Month.from() 方法示例



描述

java.time.Month.from(TemporalAccessor temporal) 方法从一个时间对象中获取 Month 的实例。

声明

以下是 java.time.Month.from(TemporalAccessor temporal) 方法的声明。

public static Month from(TemporalAccessor temporal)

public static Month from(TemporalAccessor temporal)

参数

temporal - 要转换的、非空的时间对象。

返回值

本地日期,非空。

异常

DateTimeException - 如果无法转换为月份。

示例

package com.tutorialspoint;

import java.time.Month;
import java.time.ZonedDateTime;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month day = Month.from(ZonedDateTime.now());
      System.out.println(day);  
   }
}

动态演示

DECEMBER
打印页面