Java中的 HijrahChronology prolepticYear() 方法与示例
Java.time.chrono.HijrahChronology类的prolepticYear()方法用于检索特定 hijrah 时代的 hijrah 系统中存在的 proleptic 年份。
句法:
public int prolepticYear(Era era,
int yearOfEra)
参数:此方法将以下参数作为参数。
- 时代:这是回历时代的对象。
- yearofEra:这是特定的 hijrah 时代的一年
返回值:此方法返回特定 Hijrah 时代的 Hijrah 系统中的预兆年。
以下是说明prolepticYear()方法的示例:
示例 1:
// Java program to demonstrate
// prolepticYear() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing
// HijrahDate Object
HijrahDate hidate = HijrahDate.now();
// getting HijrahChronology used in HijrahDate
HijrahChronology crono = hidate.getChronology();
// getting prolepticYear for the
// given year of Era
// by using prolepticYear() method
int proyear
= crono.prolepticYear(HijrahEra.AH, 1444);
// display the result
System.out.println("proleptic Year is: "
+ proyear);
}
catch (DateTimeException e) {
System.out.println("passed parameter can"
+ " not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
输出:
proleptic Year is: 1444
示例 2:
// Java program to demonstrate
// prolepticYear() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing
// HijrahDate Object
HijrahDate hidate = HijrahDate.now();
// getting HijrahChronology used in HijrahDate
HijrahChronology crono = hidate.getChronology();
// getting prolepticYear for the
// given year of Era
// by using prolepticYear() method
int proyear
= crono.prolepticYear(HijrahEra.AH, 1200);
// display the result
System.out.println("proleptic Year is: "
+ proyear);
}
catch (DateTimeException e) {
System.out.println("passed parameter can"
+ " not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
输出:
proleptic Year is: 1200
参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/HijrahChronology.html#prolepticYear-java.time.chrono.Era-int-