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-
相关用法
- Java HijrahDate equals()用法及代码示例
- Java HijrahDate isLeapYear()用法及代码示例
- Java HijrahDate getChronology()用法及代码示例
- Java HijrahDate now(Clock)用法及代码示例
- Java HijrahDate lengthOfYear()用法及代码示例
- Java HijrahDate lengthOfMonth()用法及代码示例
- Java HijrahDate hashCode()用法及代码示例
- Java HijrahDate atTime()用法及代码示例
- Java HijrahDate getEra()用法及代码示例
- Java HijrahDate range()用法及代码示例
- Java HijrahDate toEpochDay()用法及代码示例
- Java HijrahDate getLong()用法及代码示例
- Java HijrahDate toString()用法及代码示例
- Java HijrahDate now(ZoneId)用法及代码示例
- Java HijrahDate plus(long, TemporalUnit)用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 HijrahDate of(int, int, int) method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。