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


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


Java中Period類的getUnits()方法用於獲取此Period支持的單位集。列表中支持的單位是YEARS,MONTHS,DAYS(僅按此順序)。

用法:

public List getUnits()

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


返回值此方法返回包含年,月和日的列表。

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

程序1

// Java code to show the function getUnits() 
// to get the set of units supported by period 
  
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to get the set of units supported by period 
    static void getNumberOfDays(int year, int months, int days) 
    { 
        Period period = Period.of(year, months, days); 
        System.out.println(period.getUnits()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        int year = 1; 
        int months = 13; 
        int days = 36; 
  
        getNumberOfDays(year, months, days); 
    } 
}
輸出:
[Years, Months, Days]

程序2

// Java code to show the function getUnits() 
// to get the set of units supported by period 
  
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to get the set of units supported by period 
    static void getNumberOfDays(int year, int months, int days) 
    { 
        Period period = Period.ofDays(days); 
        System.out.println(period.getUnits()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        int year = 0; 
        int months = 0; 
        int days = 0; 
  
        getNumberOfDays(year, months, days); 
    } 
}
輸出:
[Years, Months, Days]

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



相關用法


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