java.time.LocalDate.lengthOfMonth()
方法返回此日期表示的月份長度。
以下是java.time.LocalDate.lengthOfMonth()
方法的宣告。
public int lengthOfMonth()
以天為單位的月份長度。
以下範例顯示了java.time.LocalDate.lengthOfMonth()
方法的用法。
package com.yiibai;
import java.time.LocalDate;
public class LocalDateDemo {
public static void main(String[] args) {
LocalDate date = LocalDate.parse("2017-02-03");
System.out.println(date.lengthOfMonth());
}
}
編譯並執行上面的程式,這將產生以下結果 -
28