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


Java Instant minus()用法及代码示例


在Instant类中,根据传递给它的参数,有两种类型的minus()方法。

minus(long amountTosubtract, TemporalUnit unit)

Instant类的minus()方法用于返回该瞬时值的副本,其中减去指定数量的单位。如果由于该单位不受支持或由于其他原因而无法减去该数量,则将引发异常。

用法:


public Instant minus(long amountToSubtract,
                     TemporalUnit unit)

参数:此方法接受两个参数:

  • amountToSubtract它是要减去结果的单位量,可以为负,并且
  • unit这是要减去的数量的单位,不能为null。

返回值:此方法基于此瞬间返回Instant,减去指定的数量。

异常:此方法引发以下异常:

  • DateTimeException–如果不能进行减法
  • UnsupportedTemporalTypeException–如果不支持本机
  • ArithmeticException–如果发生数字溢出

以下示例程序旨在说明minus()方法:

示例1:

// Java program to demonstrate 
// Instant.minus() method 
  
import java.time.*; 
import java.time.temporal.ChronoUnit; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an Instant object 
        Instant instant 
            = Instant.parse("2018-12-30T19:34:50.63Z"); 
  
        // subtract 20 DAYS to Instant 
        Instant value 
            = instant.minus(20, ChronoUnit.DAYS); 
  
        // print result 
        System.out.println("Instant after subtracting DAYS: "
                           + value); 
    } 
}
输出:
Instant after subtracting DAYS: 2018-12-10T19:34:50.630Z

minus(TemporalAmount amountTosubtract)

Instant类的minus()方法用于返回此瞬时的副本,并将指定的数量减去日期时间。该数量通常是Period或Duration,但是可以是实现TemporalAmount接口的任何其他类型。

用法:

public Instant minus(TemporalAmount amountTosubtract)

参数:此方法接受一个参数parameterToSubtract,它是要减去的数量,它不能为null。

返回值:此方法基于此日期时间并减去后返回Instant,而不是null。

异常:此方法引发以下异常:

  • DateTimeException–如果不能进行减法
  • ArithmeticException–如果发生数字溢出

以下示例程序旨在说明minus()方法:
示例1:

// Java program to demonstrate 
// Instant.minus() method 
  
import java.time.*; 
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an Instant object 
        Instant inst 
            = Instant.parse("2018-12-30T19:34:50.63Z"); 
  
        // subtract 10 Days to Instant 
        Instant value 
            = inst.minus(Period.ofDays(10)); 
  
        // print result 
        System.out.println("Instant after subtracting Days: "
                           + value); 
    } 
}
输出:
Instant after subtracting Days: 2018-12-20T19:34:50.630Z

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#minus(java.time.temporal.TemporalAmount)
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#minus(long,java.time.temporal.TemporalUnit)



相关用法


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