📌  相关文章
📜  Java中的 LocalDate lengthOfMonth() 方法及示例

📅  最后修改于: 2022-05-13 01:54:37.789000             🧑  作者: Mango

Java中的 LocalDate lengthOfMonth() 方法及示例

Java中 LocalDate 类的 lengthOfMonth() 方法返回这个日期所代表的月份的长度。

语法

public int lengthOfMonth()

参数:此方法不接受参数。

返回值:该函数以天为单位返回月份的长度。

下面的程序说明了Java中 LocalDate 的lengthOfMonth()方法:

程序 1

// Program to illustrate the lengthOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the first date
        LocalDate dt1 = LocalDate.parse("2018-11-27");
  
        // Checks
        System.out.println(dt1.lengthOfMonth());
    }
}
输出:
30

方案二

// Program to illustrate the lengthOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the first date
        LocalDate dt1 = LocalDate.parse("2018-01-27");
  
        // Checks
        System.out.println(dt1.lengthOfMonth());
    }
}
输出:
31

参考:https: Java/time/LocalDate.html#lengthOfMonth()