📌  相关文章
📜  Java中的 Duration negated() 方法和示例

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

Java中的 Duration negated() 方法和示例

Java.time 包中的Duration 类的 negated ()方法用于获取该持续时间的不可变副本,其中持续时间为否定。

句法:

public Duration negated()

参数:此方法不接受任何参数。

返回值:此方法返回一个持续时间,它是现有持续时间的不可变副本,持续时间被否定。

异常:如果发生数字溢出,此方法将引发ArithmeticException

下面的示例说明了 Duration.negated() 方法:

示例 1:

// Java code to illustrate negated() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Duration 1 using parse() method
        Duration duration1
            = Duration.parse("P2DT3H4M");
  
        // Get the duration negated using negated() method
        System.out.println(duration1.negated());
    }
}
输出:
PT-51H-4M

示例 2:

// Java code to illustrate negated() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Duration
        Duration duration2
            = Duration.ofDays(5);
  
        // Get the duration negated
        // using negated() method
        System.out.println(duration2.negated());
    }
}
输出:
PT-120H

参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/Duration.html#negated–