可以使用ofMonths()
Java的Period类中的方法以给定的月数获得Period。此方法需要一个参数,即月数,并返回具有给定月数的Period对象。
演示此的程序如下所示-
import java.time.Period; public class Demo { public static void main(String[] args) { int months = 11; Period p = Period.ofMonths(months); System.out.println("The Period is: " + p); } }
输出结果
The Period is: P11M
现在让我们了解上面的程序。
使用该ofMonths()
方法以给定的月数获得期间,然后将其打印出来。演示这的代码片段如下-
int months = 11; Period p = Period.ofMonths(months); System.out.println("The Period is: " + p);