- java.time 软件包类
- java.time - 主页
- java.time - 时钟
- java.time - 时长
- java.time - 即时
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - 周期
- java.time - 年
- java.time - 年月
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 软件包枚举类型
- java.time - 月
- java.time 有用资源
- java.time - 讨论
java.time.LocalDate.withDayOfYear() 方法示例
说明
**java.time.LocalDate.withDayOfYear(int dayOfYear)** 方法返回一个副本,副本中 LocalDate 的一年中的第几天被修改了。
声明
以下是 **java.time.LocalDate.withDayOfYear(int dayOfYear)** 方法的声明。
public LocalDate withDayOfYear(int dayOfYear)
参数
**dayOfYear** − 要在结果中设置的年中第几天,从 1 到 365-366。
返回值
基于此日期的 LocalDate,带有请求的日期,不得为 null。
异常
**DateTimeException** - 如果一年中的第几天值无效,或者一年中的第几天对年份无效。
示例
以下示例演示了如何使用 java.time.LocalDate.withDayOfYear(int dayOfYear) 方法。
package com.tutorialspoint; import java.time.LocalDate; public class LocalDateDemo { public static void main(String[] args) { LocalDate date = LocalDate.parse("2017-01-03"); LocalDate result = date.withDayOfYear(43); System.out.println(result); } }
让我们编译并运行上面的程序,它将产生以下结果 -
2017-02-12
广告