java.time.chrono.MinguoDate类的lengthOfMonth()方法用于获取由特定的Minguo日期表示的月份中出现的天数。
用法:
public int lengthOfMonth()
参数:此方法不接受任何参数作为参数。
返回值:此方法返回以特定的Minguo日期表示的月份中出现的天数。
下面是说明lengthOfMonth()方法的示例:示例1:
Java
// Java program to demonstrate
// lengthOfMonth() 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
// MinguoDate Object
MinguoDate hidate
= MinguoDate.now();
// Getting length of a month
// by using lengthOfMonth() method
int length = hidate.lengthOfMonth();
// 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:30
范例2:
Java
// Java program to demonstrate
// lengthOfMonth() 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
// MinguoDate Object
MinguoDate hidate
= MinguoDate.of(2020, 06, 23);
// Getting length of a month
// by using lengthOfMonth() method
int length = hidate.lengthOfMonth();
// 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:30
参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/MinguoDate.html#lengthOfMonth-
相关用法
- Java HijrahDate lengthOfMonth()用法及代码示例
- Java LocalDate lengthOfMonth()用法及代码示例
- Java JapaneseDate lengthOfMonth()用法及代码示例
- Java ChronoLocalDate lengthOfMonth()用法及代码示例
- Java MinguoDate from()用法及代码示例
- Java MinguoDate now()用法及代码示例
- Java MinguoDate equals()用法及代码示例
- Java MinguoDate getChronology()用法及代码示例
- Java MinguoDate hashCode()用法及代码示例
- Java MinguoDate getEra()用法及代码示例
- Java MinguoDate atTime()用法及代码示例
- Java MinguoDate getLong()用法及代码示例
- Java MinguoDate now(ZoneId)用法及代码示例
- Java MinguoDate minus(long, TemporalUnit)用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 MinguoDate lengthOfMonth() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。