當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。