Java中MonthDay类的getMonth()方法从时间对象获取MonthDay的实例。
用法:
public Month getMonth()
参数:此方法不接受任何参数。
返回值:该函数返回month-of-year,并且不为null。
以下示例程序旨在说明MonthDay.getMonth()方法:
示例1:
// Program to illustrate the getMonth() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
MonthDay tm1 = MonthDay.parse("--12-06");
// Uses the function
LocalDate dt1 = tm1.atYear(2018);
// Prints the date
System.out.println(dt1.getMonth());
}
}
输出:
DECEMBER
示例2:
// Program to illustrate the getMonth() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
MonthDay tm1 = MonthDay.parse("--01-09");
// Uses the function
LocalDate dt1 = tm1.atYear(2016);
// Prints the date
System.out.println(dt1.getMonth());
}
}
输出:
JANUARY
参考: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#getMonth–
相关用法
- Java LocalDateTime getMonth()用法及代码示例
- Java OffsetDateTime getMonth()用法及代码示例
- Java ZonedDateTime getMonth()用法及代码示例
- Java MonthDay get()用法及代码示例
- Java MonthDay from()用法及代码示例
- Java MonthDay with()用法及代码示例
- Java MonthDay isValidYear()用法及代码示例
- Java MonthDay isSupported()用法及代码示例
- Java MonthDay isAfter()用法及代码示例
- Java MonthDay isBefore()用法及代码示例
- Java MonthDay withMonth()用法及代码示例
- Java MonthDay toString()用法及代码示例
- Java MonthDay hashCode()用法及代码示例
- Java MonthDay range()用法及代码示例
- Java MonthDay withDayOfMonth()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 MonthDay getMonth() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。