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


Java ChronoPeriod subtractFrom()用法及代码示例


使用java.time.chrono包中ChronoPeriod接口的excludeFrom(Temporal)方法将此ChronoPeriod减去指定的时间对象,作为参数传递。

用法:

Temporal subtractFrom(Temporal temporalObject)

参数:此方法接受参数TemporalObject,该参数是在此ChronoPeriod中要调整的数量。它不能为空。


返回值:此方法返回一个相同类型的对象,将其TemporalObject调整为该对象。

异常:该方法抛出:

  • DateTimeException:如果无法减去。
  • ArithmeticException:如果发生数字溢出。

以下示例说明了ChronoPeriod.subtractFrom()方法:

程序1

// Java code to show the function subtractFrom() 
// to subtract the two given periods 
  
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodDemo { 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        // Defining period 
        int year = 4; 
        int months = 11; 
        int days = 10; 
        ChronoPeriod p1 = Period.of(year, months, days); 
  
        // Get the time to be adjusted 
        LocalDateTime currentTime 
            = LocalDateTime.now(); 
  
        // Adjust the time 
        // using subtractFrom() method 
        System.out.println( 
            p1.subtractFrom(currentTime)); 
    } 
}
输出:
2014-07-07T14:22:21.929

程序2

// Java code to show the function subtractFrom() 
// to subtract the two given periods 
  
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodDemo { 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        // Defining period 
        int year1 = 2; 
        int months1 = 7; 
        int days1 = 8; 
        ChronoPeriod p1 = Period.of(year1, months1, days1); 
  
        // Get the time to be adjusted 
        LocalDateTime currentTime 
            = LocalDateTime.now(); 
  
        // Adjust the time 
        // using subtractFrom() method 
        System.out.println( 
            p1.subtractFrom(currentTime)); 
    } 
}
输出:
2016-11-09T14:22:26.600

参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoPeriod.html#subtractFrom-java.time.temporal.Temporal-



相关用法


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