带有示例的Java中的 HijrahDate lengthOfYear() 方法
Java.time.chrono.HijrahDate类的lengthOfYear()方法用于获取由特定回历日期表示的一年中存在的天数。
句法:
public int lengthOfYear()
参数:此方法不接受任何参数作为参数。
返回值:此方法返回特定回历日期表示的一年中以整数值形式存在的天数。
以下是说明lengthOfYear()方法的示例:
示例 1:
Java
// Java program to demonstrate
// lengthOfYear() 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
HijrahDate hidate
= HijrahDate.of(1345, 06, 23);
// Getting length of a year
// by using lengthOfYear() method
int length = hidate.lengthOfYear();
// Display the result
System.out.println("no of day present: "
+ length);
}
catch (DateTimeException e) {
System.out.println("passed parameter can"
+ " not form a date");
System.out.println("Exception thrown: "
+ e);
}
}
}
Java
// Java program to demonstrate
// lengthOfYear() 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
HijrahDate hidate = HijrahDate.now();
// Getting length of a year
// by using lengthOfYear() method
int length = hidate.lengthOfYear();
// Display the result
System.out.println("no of day present: "
+ length);
}
catch (DateTimeException e) {
System.out.println("passed parameter can"
+ " not form a date");
System.out.println("Exception thrown: "
+ e);
}
}
}
输出:
no of day present: 354
示例 2:
Java
// Java program to demonstrate
// lengthOfYear() 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
HijrahDate hidate = HijrahDate.now();
// Getting length of a year
// by using lengthOfYear() method
int length = hidate.lengthOfYear();
// Display the result
System.out.println("no of day present: "
+ length);
}
catch (DateTimeException e) {
System.out.println("passed parameter can"
+ " not form a date");
System.out.println("Exception thrown: "
+ e);
}
}
}
输出:
no of day present: 355
参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/HijrahDate.html#lengthOfYear–