Java中的 Period ofMonths() 方法及示例
Period 类的ofMonths()方法用于从给定的月份数中获取一个周期作为参数。此参数以整数形式接受。此方法返回具有给定月数的 Period。
句法:
public static Period ofMonths(int numberOfMonths)
参数:此方法接受单个参数numberOfMonths ,它是要解析为 Period 对象的月份数。
返回:此函数返回以给定月份数解析的Period对象的周期。
下面是 Period.ofMonths() 方法的实现:
示例 1:
// Java code to demonstrate ofMonths() method
import java.time.Period;
class GFG {
public static void main(String[] args)
{
// Get the number of Months
int numberOfMonths = 5;
// Parse the numberOfMonths into Period
// using ofMonths() method
Period p = Period.ofMonths(numberOfMonths);
System.out.println(p.getYears() + " Years\n"
+ p.getMonths() + " Months\n"
+ p.getDays() + " Days");
}
}
输出:
0 Years
5 Months
0 Days
示例 2:
// Java code to demonstrate ofMonths() method
import java.time.Period;
class GFG {
public static void main(String[] args)
{
// Get the number of Months
int numberOfMonths = -5;
// Parse the numberOfMonths into Period
// using ofMonths() method
Period p = Period.ofMonths(numberOfMonths);
System.out.println(p.getYears() + " Years\n"
+ p.getMonths() + " Months\n"
+ p.getDays() + " Days");
}
}
输出:
0 Years
-5 Months
0 Days
参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/Period.html#ofMonths-int-