java.util.Calendar getLeastMaximum()方法

java.util.Calendar.getLeastMaximum() 方法返回此Calendar实例给定日历字段的最低的最大值。

1 语法

public abstract int getLeastMaximum()(field)

2 参数

field:给定日历字段。

3 返回值

返回给定日历字段的最低的最大值。

4 示例1 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Calendar getLeastMaximum()方法的例子
 */
import java.util.*;

public class CalendarDemo {

   public static void main(String[] args) {

      // create a calendar
      Calendar cal = Calendar.getInstance();

      // get the days required in the first week of the year
      System.out.println("Months required: " + cal.get(Calendar.MONTH));

      // print the lowest maximum months for year.
      int max = cal.getLeastMaximum(Calendar.MONTH);
      System.out.println("Lowest maximum months :" + max);

   }
}

输出结果为:

Months required: 4
Lowest maximum months :11

 

热门文章

优秀文章