Java 中的 Period from() 方法
可以通过 Java 中 Period 类的 from() 方法从 Temporal 对象获取 Period 对象的实例。此方法需要一个参数(即 TemporalAmount), 它返回获取的 Period 对象。
下面给出了演示此方法的程序
示例
import java.time.Period; public class Demo { public static void main(String[] args) { int days = 20; int months = 11; int years = 3; Period p = Period.from(Period.of(years, months, days)); System.out.println("The Period is: " + p); } }
输出
The Period is: P3Y11M20D
现在让我们了解一下上面的程序。
使用 from() 方法从 Temporal 对象获取 Period 对象的实例,然后显示该实例。演示此过程的代码片段如下
int days = 20; int months = 11; int years = 3; Period p = Period.from(Period.of(years, months, days)); System.out.println("The Period is: " + p);
广告