Java 日历 getLeastMaximum()方法及示例

Java 日历 getLeastMaximum()方法及示例

Calendar类中的 getLeastMaximum(int calndr_field )方法用于返回这个Calendar实例中给定的日历字段(int calndr_field)的最低最大值。

语法

public abstract int getLeastMaximum(int calndr_field)

参数: 该方法需要一个参数calndr_field,指的是要操作的日历字段。

返回值: 该方法返回该日历字段的最低最大值。

下面的程序说明了日历类的getLeastMaximum()方法的工作原理:

例1 :

// Java code to illustrate
// getLeastMaximum() method
  
import java.util.*;
  
public class Calendar_Demo {
    public static void main(String args[])
    {
  
        // Creating a calendar
        Calendar calndr = Calendar.getInstance();
  
        // Getting the required months
        System.out.println("Required Months: "
                           + calndr.get(Calendar.MONTH));
  
        // Getting the lowest maximum month
        int low_max = calndr.getLeastMaximum(Calendar.MONTH);
  
        // Displaying the results
        System.out.println("The Lowest"
                           + " Maximum months: " + low_max);
    }
}

输出:

Required Months: 1
The Lowest Maximum months: 11

例2 :

// Java code to illustrate
// getLeastMaximum() method
  
import java.util.*;
  
public class Calendar_Demo {
    public static void main(String args[])
    {
  
        // Creating a calendar
        Calendar calndr = new GregorianCalendar(2018, 6, 10);
  
        // Getting the required months
        System.out.println("Required Months: "
                           + calndr.get(Calendar.MONTH));
  
        // Getting the lowest maximum month
        int low_max = calndr.getLeastMaximum(Calendar.MONTH);
  
        // Displaying the results
        System.out.println("The Lowest"
                           + " Maximum months: " + low_max);
    }
}

输出:

Required Months: 6
The Lowest Maximum months: 11

参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#getLeastMaximum-int-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程