当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Calendar getLeastMaximum()用法及代码示例


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

用法:

public abstract int getLeastMaximum(int calndr_field)

参数:该方法采用一个参数calndr_field,该参数表示要操作的日历字段。


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

以下示例程序旨在说明Calendar类的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-



相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 Calendar getLeastMaximum() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。