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-
相关用法
- Java Year atMonth(Month month)用法及代码示例
- Java Month get()用法及代码示例
- Java Month plus()用法及代码示例
- Java Month of()用法及代码示例
- Java Month from()用法及代码示例
- Java Month isSupported()用法及代码示例
- Java Month getValue()用法及代码示例
- Java Month getLong()用法及代码示例
- Java Month getDisplayName()用法及代码示例
- Java Month firstMonthOfQuarter()用法及代码示例
- Java Month adjustInto()用法及代码示例
- Java Month length()用法及代码示例
- Java Month minus()用法及代码示例
- Java Month maxLength()用法及代码示例
- Java Month minLength()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Month firstDayOfYear() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。