Java 中的 HijrahDate now(ZoneId)方法,示例
原文:https://www . geesforgeks . org/hijrahdate-now zoneid-method-in-Java-with-example/
Java . time . chrono . hijrahdate类的 now() 方法是根据指定区域的 hijrah 日历系统获取当前的 hijrah 日期。
语法:
public static HijrahDate now(ZoneId zone)
参数:该方法以区域 id 为对象,在此基础上形成回历日期。
返回值:该方法根据回历系统从指定的时钟返回当前回历日期。
以下是举例说明现在()方法的例子:
例 1:
Java 语言(一种计算机语言,尤用于创建网站)
// Java program to demonstrate now() 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 ZoneId
ZoneId id = ZoneId.systemDefault();
// Creating and initializing
// HijrahDate Object
HijrahDate hidate = HijrahDate.now(id);
// 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);
}
}
}
Output:
HijrahDate: Hijrah-umalqura AH 1441-06-25
例 2:
Java 语言(一种计算机语言,尤用于创建网站)
// Java program to demonstrate now() 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 ZoneId
ZoneId id = ZoneId.of("Z");
// Creating and initializing
// HijrahDate Object
HijrahDate hidate = HijrahDate.now(id);
// 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);
}
}
}
Output:
HijrahDate: Hijrah-umalqura AH 1441-06-25
版权属于:月萌API www.moonapi.com,转载请注明出处