当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Period minusYears()用法及代码示例


Java中Period类的minusYears()方法用于从给定期间中减去指定的年份。此函数仅在YEARS起作用,而不会影响其他两个MONTHS和DAYS。

用法:

public Period minusYears(long yearsToSubtract)

参数:此方法接受单个参数yearsToSubtract,这是要从期间中减去的年数。


返回值:此方法将根据输入中提供的期间减去指定的年数返回一个期间。不能为空。

异常:它引发ArithmeticException。如果发生数字溢出,则会捕获此异常。

以下示例程序旨在说明上述方法:

程序1

// Java code to show the function minusYears() 
// to subtract the number of years from given period 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to subtract two given periods 
    static void subtractYears(Period p1, int yearstoSubtract) 
    { 
  
        System.out.println(p1.minusYears(yearstoSubtract)); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        // Defining first period 
        int year = 4; 
        int months = 11; 
        int days = 10; 
        Period p1 = Period.of(year, months, days); 
  
        int yearstoSubtract = 8; 
  
        subtractYears(p1, yearstoSubtract); 
    } 
}
输出:
P-4Y11M10D

程序2

// Java code to show the function minusYears() 
// to subtract the number of years from given period 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to subtract two given periods 
    static void subtractYears(Period p1, int yearstoSubtract) 
    { 
  
        System.out.println(p1.minusYears(yearstoSubtract)); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        // Defining first period 
        int year = 4; 
        int months = 11; 
        int days = 10; 
        Period p1 = Period.of(year, months, days); 
  
        int yearstoSubtract = -8; 
  
        subtractYears(p1, yearstoSubtract); 
    } 
}
输出:
P12Y11M10D

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#minusYears-long-



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Period minusYears() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。