Java getLeastMaximum方法


Java getLeastMaximum方法

package com.codingdict;

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);
   }
}