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


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


Java中Period類的negated()方法用於在否定YEAR,MONTH,DAY期間的所有元素之後,返回Period的新實例。

用法:

public Period negated()

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


返回值:否定期間的每個元素後,此方法返回Period的新實例。

異常:它引發ArithmeticException。如果發生數字溢出,則會捕獲此異常。

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

程序1

// Java code to show the function to negate all 
// elements of the period 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to negate given periods 
    static void toNegate(Period p1) 
    { 
  
        System.out.println(p1.negated()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        // Defining period 
        int year = 4; 
        int months = 11; 
        int days = 10; 
        Period p1 = Period.of(year, months, days); 
  
        toNegate(p1); 
    } 
}
輸出:
P-4Y-11M-10D

程序2

// Java code to show the function to negate all 
// elements of the period 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to negate given periods 
    static void toNegate(Period p1) 
    { 
  
        System.out.println(p1.negated()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        // Defining period 
        int year = -4; 
        int months = -11; 
        int days = -10; 
        Period p1 = Period.of(year, months, days); 
  
        toNegate(p1); 
    } 
}
輸出:
P4Y11M10D

參考: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#negated–



相關用法


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