使用ZonedDateTime类的getMonth()方法,使用该ZonedDateTime中的Month枚举来获取month-of-year字段。如果需要访问原始int值,则枚举将提供int值。
用法:
public Month getMonth()
参数:此方法不带任何参数。
返回值:此方法返回代表month-of-year的枚举Month。
以下示例程序旨在说明getMonth()方法:
示例1:
// Java program to demonstrate
// ZonedDateTime.getMonth() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// get month field
Month value = zoneddatetime.getMonth();
// print result
System.out.println("month:" + value);
}
}
输出:
month:DECEMBER
示例2:
// Java program to demonstrate
// ZonedDateTime.getMonth() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-10-25T23:12:38.543+02:00[Europe/Paris]");
// get month field
Month value = zoneddatetime.getMonth();
// print result
System.out.println("month:" + value);
}
}
输出:
month:OCTOBER
参考: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#getMonth()
相关用法
- Java MonthDay getMonth()用法及代码示例
- Java OffsetDateTime getMonth()用法及代码示例
- Java LocalDateTime getMonth()用法及代码示例
- Java ZonedDateTime plus()用法及代码示例
- Java ZonedDateTime of()用法及代码示例
- Java ZonedDateTime get()用法及代码示例
- Java ZonedDateTime now()用法及代码示例
- Java ZonedDateTime until()用法及代码示例
- Java ZonedDateTime with()用法及代码示例
- Java ZonedDateTime range()用法及代码示例
- Java ZonedDateTime minusDays()用法及代码示例
- Java ZonedDateTime withZoneSameInstant()用法及代码示例
- Java ZonedDateTime withZoneSameLocal()用法及代码示例
- Java ZonedDateTime toLocalDateTime()用法及代码示例
- Java ZonedDateTime plusMonths()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 ZonedDateTime getMonth() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。