Java中的 LocalDateTime getMonthValue() 方法及示例
LocalDateTime 类的getMonthValue()方法用于返回年份字段。此方法将 LocalDateTime 中的月份作为从 1 到 12 的整数返回。
句法:
public int getMonthValue()
参数:此方法不接受任何参数。
返回:此方法返回整数值,即月份字段,范围从 1 到 12。
下面的程序说明了 LocalDateTime.getMonthValue() 方法:
方案一:
// Java program to demonstrate
// LocalDateTime.getMonthValue() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a LocalDateTime Object
LocalDateTime local
= LocalDateTime.parse("2018-10-23T22:29:10");
// get Month value field
int monthvalue = local.getMonthValue();
// print result
System.out.println("Month Value: "
+ monthvalue);
}
}
输出:
Month Value: 10
方案二:
// Java program to demonstrate
// LocalDateTime.getMonthValue() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a LocalDateTime Object
LocalDateTime local
= LocalDateTime.parse("2018-12-13T12:28:13");
// get Month value field
int monthvalue = local.getMonthValue();
// print result
System.out.println("Month Value: "
+ monthvalue);
}
}
输出:
Month Value: 12
参考:https: Java/time/LocalDateTime.html#getMonthValue()