Java Period of()方法及实例

Java Period of()方法及实例

Period类of() 方法用于从给定的年、月、日参数中获得一个周期。这些参数以整数的形式被接受。该方法返回一个具有给定年、月、日数的周期。

语法

public static Period of(
        int numberOfYears, 
        int numberOfMonths,
        int numberOfDays)

参数: 该方法接受以下参数。

  • numberOfYears : 这是用来表示年的数量,可能是负数。
  • numberOfMonths :用于表示可能为负数的月数。
  • numberOfDays : 用于表示可能为负数的天数。

返回: 该函数返回周期,即用给定的年、月、日数量解析的周期对象。

下面是Period.of()方法的实现。

例1:

// Java code to demonstrate of() method
  
import java.time.Period;
  
class GFG {
    public static void main(String[] args)
    {
  
        // Get the number of Years
        int numberOfYears = 1;
  
        // Get the number of Months
        int numberOfMonths = 5;
  
        // Get the number of Days
        int numberOfDays = 21;
  
        // Parse the given amounts into Period
        // using of() method
        Period p
            = Period.of(numberOfYears,
                        numberOfMonths,
                        numberOfDays);
  
        System.out.println(p.getYears() + " Years\n"
                           + p.getMonths() + " Months\n"
                           + p.getDays() + " Days");
    }
}

输出:

1 Years
5 Months
21 Days

例2:

// Java code to demonstrate of() method
  
import java.time.Period;
  
class GFG {
    public static void main(String[] args)
    {
  
        // Get the number of Years
        int numberOfYears = -2;
  
        // Get the number of Months
        int numberOfMonths = 10;
  
        // Get the number of Days
        int numberOfDays = -11;
  
        // Parse the given amounts into Period
        // using of() method
        Period p
            = Period.of(numberOfYears,
                        numberOfMonths,
                        numberOfDays);
  
        System.out.println(p.getYears() + " Years\n"
                           + p.getMonths() + " Months\n"
                           + p.getDays() + " Days");
    }
}

输出:

-2 Years
10 Months
-11 Days

参考资料: https://docs.oracle.com/javase/9/docs/api/java/time/Period.html#of-int-int-int-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程