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


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


Calendar类setMinimalDaysInFirstWeek()方法

  • setMinimalDaysInFirstWeek() 方法可在java.util包。
  • setMinimalDaysInFirstWeek() 方法用于设置一年中第一周所需的最少天数。
  • setMinimalDaysInFirstWeek() 方法是一个非静态方法,它可以通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • setMinimalDaysInFirstWeek() 方法在一年的第一周所需的最少天数设置时不会抛出异常。

用法:

    public void setMinimalDaysInFirstWeek(int days);

参数:

  • int days– 表示用于设置一年第一周所需天数的数值。

返回值:

这个方法的返回类型是void,它什么都不返回。

例:

// Java Program to demonstrate the example of
// void setMinimalDaysInFirstWeek(int days) method 
// of Calendar

import java.util.*;

public class SetMinimalDayInFirstWeek {
    public static void main(String args[]) {
        // Instantiating a Calendar object
        Calendar ca = Calendar.getInstance();

        System.out.println("ca:" + ca.getTime());

        // By using setMinimalDaysInFirstWeek(int) method is to 
        // set the minimum number of days in the first week of
        // Calendar
        ca.setMinimalDaysInFirstWeek(5);

        // By using getMinimalDaysInFirstWeek() method is to
        // return the minimal days required to complete first 
        // week of the calendar
        int min_days = ca.getMinimalDaysInFirstWeek();

        // Display status
        System.out.println("ca.getMinimalDaysInFirstWeek():" + min_days);
    }
}

输出

ca:Sun Feb 02 08:31:30 GMT 2020
ca.getMinimalDaysInFirstWeek():5


相关用法


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