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


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


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)



相關用法


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