當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java LocalDate withYear()用法及代碼示例


Java中LocalDate類的withYear()方法返回更改了年份的該LocalDate的副本。

用法:

public LocalDate withYear(int year)

參數:此方法接受強製性參數year,該參數指定要在結果中設置的年份,範圍可以從MIN_YEAR到MAX_YEAR。


返回值:該函數基於此日期和所請求的年份返回LocalDate,而不是null。

異常:年份值無效時,該函數引發DateTimeException。

以下示例程序旨在說明LocalDate.withYear()方法:

示例1:

// Program to illustrate the withYear() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date 
        LocalDate dt1 = LocalDate.parse("2018-12-07"); 
        LocalDate result = dt1.withYear(2018); 
  
        // Prints the date with year 
        System.out.println("The date with year is: " + result); 
    } 
}
輸出:
The date with year is: 2018-12-07

示例2:

// Program to illustrate the withYear() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date 
        LocalDate dt1 = LocalDate.parse("2018-01-07"); 
        LocalDate result = dt1.withYear(2014); 
  
        // Prints the date with year 
        System.out.println("The date with year is: " + result); 
    } 
}
輸出:
The date with year is: 2014-01-07

參考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#withYear(int)



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 LocalDate withYear() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。