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


Java HijrahDate of(int, int, int)用法及代碼示例


java.time.chrono.HijrahDate類的of()方法用於通過使用傳遞的多義年份,月份和日期,根據回教回曆日曆係統生成日期。

用法:

public static HijrahDate of(int Year,
            int month, int dayOfMonth)

參數:此方法將以下參數作為參數:


  • year:是year的整數值,代表hijrah date中的year字段。
  • month:這是month的整數值,代表hijrah date中的month字段。
  • day:這是day的整數值,代表hijrah date中的day字段。

返回值:此方法使用傳遞的通行年份,月份和日期,根據回教回曆日曆係統返回日期。

異常:如果傳遞的參數無法形成日期,則此方法將引發DateTimeException。

下麵是說明of()方法的示例:

範例1:

Java

// Java program to demonstrate of() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing 
            // HijrahDate Object 
            // By using of() method 
            HijrahDate hidate 
                = HijrahDate.of(1444, 04, 24); 
  
            // Display the result 
            System.out.println("HijrahDate:"
                               + hidate); 
        } 
        catch (DateTimeException e) { 
            System.out.println("passed parameter can"
                               + " not form a date"); 
            System.out.println("Exception thrown:"
                               + e); 
        } 
    } 
}
輸出:
HijrahDate:Hijrah-umalqura AH 1444-04-24

範例2:

Java

// Java program to demonstrate of() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing 
            // HijrahDate Object 
            // By using of() method 
            HijrahDate hidate 
                = HijrahDate.of(2014, 04, 24); 
  
            // Display the result 
            System.out.println("HijrahDate:"
                               + hidate); 
        } 
        catch (DateTimeException e) { 
            System.out.println("passed parameter can"
                               + " not form a date"); 
            System.out.println("Exception thrown:"
                               + e); 
        } 
    } 
}
輸出:
passed parameter can not form a date
Exception thrown:java.time.DateTimeException:
                  Invalid Hijrah date,
                  year:2014, month:4

參考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahDate.html#of-int-int-int-



相關用法


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