📜  Java中的 Period withDays() 方法和示例

📅  最后修改于: 2022-05-13 01:55:17.466000             🧑  作者: Mango

Java中的 Period withDays() 方法和示例

Period 类withDays()方法用于获取具有指定天数的周期。此天数作为整数值作为参数传递。

句法:

public Period withDays(int numberOfDays)

参数:此方法接受一个参数numberOfDays ,它是此期间要更改的天数。

返回:此函数返回一个以天数作为参数传递的Period

下面是 Period.withDays() 方法的实现:

示例 1:

// Java code to demonstrate withDays() method
  
import java.time.Period;
  
class GFG {
    public static void main(String[] args)
    {
  
        // Get the String to be withDaysd
        String period = "P1Y2M21D";
  
        // Parse the String into Period
        Period p = Period.parse(period);
  
        System.out.println("Period: " + p);
  
        // Get the number of days
        int numberOfDays = 5;
  
        // Change the numberOfDays of this Period
        // using withDays() method
        System.out.println("New Period: "
                           + p.withDays(numberOfDays));
    }
}
输出:
Period: P1Y2M21D
New Period: P1Y2M5D

示例 2:

// Java code to demonstrate withDays() method
  
import java.time.Period;
  
class GFG {
    public static void main(String[] args)
    {
  
        // Get the String to be withDaysd
        String period = "-P1Y2M21D";
  
        // Parse the String into Period
        Period p = Period.parse(period);
  
        System.out.println("Period: " + p);
  
        // Get the number of days
        int numberOfDays = -5;
  
        // Change the numberOfDays of this Period
        // using withDays() method
        System.out.println("New Period: "
                           + p.withDays(numberOfDays));
    }
}
输出:
Period: P-1Y-2M-21D
New Period: P-1Y-2M-5D

参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/Period.html#withDays-int-