Java中OffsetDateTime类的withYear()方法返回此OffsetDateTime的副本,其年份按参数中的指定进行了更改。
用法:
public OffsetDateTime withYear(int year)
参数:此方法接受单个参数year,该参数指定要在结果中设置的年份,范围可以从MIN_YEAR到MAX_YEAR。
返回值:它基于此日期返回一个OffsetDateTime,该日期带有所请求的年份,而不是null。
异常:当年份值无效时,程序将引发DateTimeException。
以下示例程序旨在说明withYear()方法:
示例1:
// Java program to demonstrate the withYear() method
import java.time.OffsetDateTime;
public class GFG {
public static void main(String[] args)
{
// Parses the date1
OffsetDateTime date1
= OffsetDateTime
.parse(
"2018-12-12T13:30:30+05:00");
// Prints dates
System.out.println("Date1: " + date1);
// Changes the year
System.out.println("Date1 after altering year: "
+ date1.withYear(2019));
}
}
输出:
Date1: 2018-12-12T13:30:30+05:00 Date1 after altering year : 2019-12-12T13:30:30+05:00
示例2:
// Java program to demonstrate the withYear() method
import java.time.OffsetDateTime;
public class GFG {
public static void main(String[] args)
{
// Parses the date1
OffsetDateTime date1
= OffsetDateTime
.parse(
"2018-12-12T13:30:30+05:00");
// Prints dates
System.out.println("Date1: " + date1);
// Changes the year
System.out.println("Date1 after altering year: "
+ date1.withYear(2010));
}
}
输出:
Date1: 2018-12-12T13:30:30+05:00 Date1 after altering year: 2010-12-12T13:30:30+05:00
参考: https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#withYear(int)
相关用法
- Java YearMonth withYear()用法及代码示例
- Java LocalDate withYear()用法及代码示例
- Java ZonedDateTime withYear()用法及代码示例
- Java LocalDateTime withYear()用法及代码示例
- Java OffsetDateTime with()用法及代码示例
- Java OffsetDateTime until()用法及代码示例
- Java OffsetDateTime get()用法及代码示例
- Java OffsetDateTime from()用法及代码示例
- Java OffsetDateTime getYear()用法及代码示例
- Java OffsetDateTime hashCode()用法及代码示例
- Java OffsetDateTime getDayOfYear()用法及代码示例
- Java OffsetDateTime getSecond()用法及代码示例
- Java OffsetDateTime adjustInto()用法及代码示例
- Java OffsetDateTime minusMonths()用法及代码示例
- Java OffsetDateTime withDayOfMonth()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 OffsetDateTime withYear() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。