Java中Period類的getMonths()方法用於獲取當前使用該月的月數。
用法:
public int getMonths()
參數:此方法不接受任何參數。
返回值:此函數返回給定期間的月數。
注意:12個月與1年之間存在差異。
以下示例程序旨在說明上述方法:
示例1:
// Java code to show the function getMonths()
// to get number of months from given period
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodDemo {
// Function to get number of months of given period
static void getNumberOfDays(int year, int months, int days)
{
Period period = Period.of(year, months, days);
System.out.println(period.getMonths());
}
// Driver Code
public static void main(String[] args)
{
int year = 0;
int months = 10;
int days = 365;
getNumberOfDays(year, months, days);
}
}
輸出:
10
程序2:這不會將13個月轉換為一年。
// Java code to show the function getMonths()
// to get number of months from given period
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodDemo {
// Function to get number of months of given period
static void getNumberOfDays(int year, int months, int days)
{
Period period = Period.of(year, months, days);
System.out.println(period.getMonths());
}
// Driver Code
public static void main(String[] args)
{
int year = 1;
int months = 13;
int days = 36;
getNumberOfDays(year, months, days);
}
}
輸出:
13
相關用法
- Java DateFormatSymbols getMonths()用法及代碼示例
- Java Period of()用法及代碼示例
- Java Period between()用法及代碼示例
- Java Period get()用法及代碼示例
- Java Period plus()用法及代碼示例
- Java Period from()用法及代碼示例
- Java Period ofMonths()用法及代碼示例
- Java Period isZero()用法及代碼示例
- Java Period minusDays()用法及代碼示例
- Java Period ofDays()用法及代碼示例
- Java Period parse()用法及代碼示例
- Java Period minus()用法及代碼示例
- Java Period minusMonths()用法及代碼示例
- Java Period getYears()用法及代碼示例
- Java Period hashCode()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 Period getMonths() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。