java.time.Month length()方法
java.time.Month.length(boolean leapYear) 方法获得本月的天数长度值。
1 语法
public int length(boolean leapYear)
2 参数
leapYear:如果润年需要长度,则为true。
3 返回值
这个月的天数,从28到31。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Month length()方法
*/
import java.time.Month;
public class MonthDemo {
public static void main(String[] args) {
Month month = Month.FEBRUARY;
System.out.println(month.length(false));
}
}
输出结果为:
28
热门文章
优秀文章