當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Duration negated()用法及代碼示例


java.time包中的Duration Class的negated()方法用於獲取該持續時間為不可變的不變副本。

用法:

public Duration negated()

參數:此方法不接受任何參數。


返回值:此方法返回Duration,它是現有持續時間的不變副本,且持續時間取反。

異常:如果發生數字溢出,則此方法將引發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–



相關用法


注:本文由純淨天空篩選整理自Code_r大神的英文原創作品 Duration negated() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。