Java YearMonth getMonthValue()方法
Java中YearMonth类的getMonthValue()方法是用来从这个YearMonth实例中获取月份字段的值。它返回月份字段的值,是一个介于1-12之间的整数,表示从一月到十二月的月份。
语法:
public int getMonthValue()
参数 :该方法不接受任何参数。
返回值 :它返回月份字段的值,为1-12的整数,表示从1月到12月的月份。
以下程序说明了Java中YearMonth的getMonthValue()方法:
程序1 :
// Program to illustrate the getMonthValue() method
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
public class GfG {
public static void main(String[] args)
{
// Create a YearMonth object
YearMonth thisYearMonth = YearMonth.of(2017, 8);
// Get the month field
System.out.println(thisYearMonth.getMonthValue());
}
}
输出。
8
程序2 :
// Program to illustrate the getMonthValue() method
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
public class GfG {
public static void main(String[] args)
{
// Create a YearMonth object
YearMonth thisYearMonth = YearMonth.of(2018, 5);
// Get the month field
System.out.println(thisYearMonth.getMonthValue());
}
}
输出。
5
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#getMonthValue-