java.util.Calendar.getLeastMaximum()方法实例
java.util.Calendar.getLeastMaximum()方法返回此Calendar实例给定日历字段的最低的最大值。
声明
以下是java.util.Calendar.getLeastMaximum()方法的声明
public abstract int getLeastMaximum()(field)
参数
-
field --给定日历字段。
返回值
返回给定日历字段的最低的最大值。
异常
-
NA
例子
下面的示例演示java.util.calendar.getLeastMaximum()方法的用法。
package com.yiibai; 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