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


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


Java中的ChronoPeriod接口的normalized()方法用於在對年份和月份進行規範化之後返回ChronoPeriod的新實例。

用法:

ChronoPeriod normalized()

參數:該函數不接受任何參數。


返回值:在標準化周期的年和月之後,此函數返回ChronoPeriod的新實例。

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

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

程序1

// Java code to show the function to normalize 
// months and years of the period 
  
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodClass { 
  
    // Function to normalize given periods 
    static void toNormalize(ChronoPeriod p1) 
    { 
  
        System.out.println(p1.normalized()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        // Defining period 
        int year = 4; 
        int months = 15; 
        int days = 10; 
        ChronoPeriod p1 = Period.of(year, months, days); 
  
        toNormalize(p1); 
    } 
}
輸出:
P5Y3M10D

程序2:這不會使天數標準化。

// Java code to show the function to normalize 
// months and years of the period 
  
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodClass { 
  
    // Function to normalize given periods 
    static void toNormalize(ChronoPeriod p1) 
    { 
  
        System.out.println(p1.normalized()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        // Defining period 
        int year = 10; 
        int months = 25; 
        int days = 366; 
        ChronoPeriod p1 = Period.of(year, months, days); 
  
        toNormalize(p1); 
    } 
}
輸出:
P12Y1M366D

參考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoPeriod.html#normalized–



相關用法


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