Java Period ofMonths()方法及示例
Period类 的 ofMonths() 方法用于从给定的月数中获取一个周期作为参数。该参数以整数形式接受。该方法返回一个具有给定月数的周期。
语法
public static Period ofMonths(int numberOfMonths)
参数: 该方法接受一个参数 numberOfMonths ,它是要解析成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-