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


Java Month firstDayOfYear()用法及代碼示例


firstDayOfYear()是每月ENUM的內置方法,用於獲取與本月第一天相對應的一年中的某天。

用法

public int firstDayOfYear(boolean leapYear)

參數:此方法接受單個參數jumpYear,這是一個布爾值標誌變量,指示Year是否為a年。


返回值:此方法返回對應於本月第一天的day-of-year。

以下示例程序旨在說明上述方法:

程序1

import java.time.*; 
import java.time.Month; 
import java.time.temporal.Temporal; 
  
class DayOfWeekExample { 
    public static void main(String[] args) 
    { 
        // Set the month to february 
        Month month = Month.of(2); 
  
        // Get corresponding day-of-year of the 
        // first day of february in a non-leap year 
        System.out.println(month.firstDayOfYear(false)); 
    } 
}
輸出:
32

程序2

import java.time.*; 
import java.time.Month; 
import java.time.temporal.Temporal; 
  
class DayOfWeekExample { 
    public static void main(String[] args) 
    { 
        // Set the month to february 
        Month month = Month.of(3); 
  
        // Get corresponding day-of-year of the 
        // first day of March in a leap year 
        System.out.println(month.firstDayOfYear(true)); 
    } 
}
輸出:
61

參考: https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#firstDayOfYear-boolean-



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Month firstDayOfYear() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。