Java YearMonth getMonth()方法
Java中YearMonth类的getMonth()方法是用来从这个YearMonth实例中获取月份字段。它将月份字段作为一个Month实例返回。
语法:
public Month getMonth()
参数 :该方法不接受任何参数。
返回值 : 它从这个YearMonth实例中返回月份字段。它不是返回一个值,而是返回一个Month实例。
以下程序说明了Java中YearMonth的getMonth()方法:
程序1 :
// Program to illustrate the getMonth() 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.getMonth());
}
}
输出。
AUGUST
程序2 :
// Program to illustrate the getMonth() 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.getMonth());
}
}
输出。
MAY
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#getMonth-