LocalDateTime類的getMonthValue()方法用於返回month-of-year字段。此方法以1到12之間的整數形式從LocalDateTime返回月份。
用法:
public int getMonthValue()
參數:此方法不接受任何參數。
返回值:此方法返回整數值,該值是month-of-year字段,範圍為1到12。
以下示例程序旨在說明LocalDateTime.getMonthValue()方法:
示例1:
// 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
示例2:
// 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://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getMonthValue()
相關用法
- Java MonthDay getMonthValue()用法及代碼示例
- Java OffsetDateTime getMonthValue()用法及代碼示例
- Java LocalDate getMonthValue()用法及代碼示例
- Java ZonedDateTime getMonthValue()用法及代碼示例
- Java LocalDateTime plus()用法及代碼示例
- Java LocalDateTime with()用法及代碼示例
- Java LocalDateTime until()用法及代碼示例
- Java LocalDateTime from()用法及代碼示例
- Java LocalDateTime now()用法及代碼示例
- Java LocalDateTime plusDays()用法及代碼示例
- Java LocalDateTime plusHours()用法及代碼示例
- Java LocalDateTime plusMinutes()用法及代碼示例
- Java LocalDateTime isEqual()用法及代碼示例
- Java LocalDateTime isBefore()用法及代碼示例
- Java LocalDateTime plusMonths()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 LocalDateTime getMonthValue() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。