📌  相关文章
📜  Java中的 LocalDateTime withYear() 方法及示例

📅  最后修改于: 2022-05-13 01:55:40.962000             🧑  作者: Mango

Java中的 LocalDateTime withYear() 方法及示例

Java中LocalDateTime 类withYear()方法用于获取此 LocalDateTime 的副本,其中年份更改为作为参数传递给此方法的年份。此 LocalDateTime 的其余值保持不变。

句法:

public LocalDateTime withYear(int year)

参数:此方法接受一个强制参数year ,该参数指定要在结果 LocalDateTime 实例中设置的年份。今年的值可以从 MIN_YEAR 到 MAX_YEAR。

返回:该函数返回一个LocalDateTime 实例,其中年份更改为作为参数传递给此方法的年份。此 LocalDateTime 的其余值保持不变。

异常:如果年份值无效,该函数将引发DateTimeException

下面的程序说明了 LocalDateTime.withYear() 方法:

方案一:

// Program to illustrate the withYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Get the LocalDateTime instance
        LocalDateTime dt = LocalDateTime.now();
  
        // Get the String representation of this LocalDateTime
        System.out.println("Original LocalDateTime: "
                           + dt.toString());
  
        // Get a new LocalDateTime with year 1998
        System.out.println("New LocalDateTime: "
                           + dt.withYear(1998));
    }
}
输出:
Original LocalDateTime: 2018-11-30T10:35:17.833
New LocalDateTime: 1998-11-30T10:35:17.833

方案二:

// Program to illustrate the withYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Get the LocalDateTime instance
        LocalDateTime dt
            = LocalDateTime
                  .parse("2015-04-06T10:15:30");
  
        // Get the String representation of this LocalDateTime
        System.out.println("Original LocalDateTime: "
                           + dt.toString());
  
        // Get a new LocalDateTime with year 20129
        System.out.println("New LocalDateTime: "
                           + dt.withYear(20129));
    }
}
输出:
Original LocalDateTime: 2015-04-06T10:15:30
New LocalDateTime: +20129-04-06T10:15:30

参考:https: Java/time/LocalDateTime.html#withYear(int)