java.time.YearMonth lengthOfMonth()方法

java.time.Year.lengthOfMonth()方法返回月份的长度,并考虑年份。

1 语法

public int lengthOfMonth()

2 参数

3 返回值

以天为单位的月份长度,从28到31。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.YearMonth lengthOfMonth()方法
 */
import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.of(2016,12);
      System.out.println(date.lengthOfMonth());  
   }
}

输出结果为:

31

 

热门文章

优秀文章