使用lengthOfMonth()
Java中LocalDate类中的方法可以获取特定LocalDate中月份的长度。此方法不需要任何参数,它以特定的LocalDate返回月份的长度,即28、29、30或31。
演示此的程序如下所示-
import java.time.*; public class Main { public static void main(String[] args) { LocalDate ld = LocalDate.parse("2019-02-15"); System.out.println("The LocalDate is: " + ld); System.out.println("The length of the month is: " + ld.lengthOfMonth()); } }
输出结果
The LocalDate is: 2019-02-15 The length of the month is: 28
现在让我们了解上面的程序。
首先显示LocalDate。然后,使用该方法获取lengthOfMonth()
并显示LocalDate中月份的长度。演示这的代码片段如下-
LocalDate ld = LocalDate.parse("2019-02-15"); System.out.println("The LocalDate is: " + ld); System.out.println("The length of the month is: " + ld.lengthOfMonth());