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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。