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


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


Calendar类中的getMinimalDaysInFirstWeek()方法用于返回所需年份的第一周所需的最少天数。

用法:

public int getMinimalDaysInFirstWeek()

参数:该方法不包含任何参数。


返回值:该方法返回第二年第一周所需的最少天数。

以下示例程序旨在说明Calendar类的getMinimalDaysInFirstWeek()方法的用法:
示例1:

// Java code to illustrate 
// getMinimalDaysInFirstWeek() 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 minimal days 
        int min_days 
            = calndr.getMinimalDaysInFirstWeek(); 
  
        // Displaying the results 
        System.out.println("The Minimal"
                           + " days required: "
                           + min_days); 
    } 
}
输出:
The Minimal days required: 1

示例2:

// Java code to illustrate 
// getMinimalDaysInFirstWeek() method 
  
import java.util.*; 
  
public class Calendar_Demo { 
    public static void main(String args[]) 
    { 
  
        // Creating a calendar 
        Calendar calndr = Calendar.getInstance(); 
  
        // Getting the required minimal days 
        int min_days 
            = calndr.getMinimalDaysInFirstWeek(); 
  
        // Displaying the results 
        System.out.println("The Minimal"
                           + " days required: "
                           + min_days); 
    } 
}
输出:
The Minimal days required: 1

参考: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#getMinimalDaysInFirstWeek–



相关用法


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