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


Java OffsetTime with()用法及代碼示例


在OffsetTime類中,根據傳遞給它的參數,有兩種類型的with()方法。

with(TemporalAdjuster adjuster)

OffsetTime類的with(TemporalAdjuster Adjuster)方法用於使用TemporalAdjuster調整此OffsetTime,並在調整後返回調整後的OffsetTime的副本。使用指定的調整器策略對象進行調整。此OffsetTime實例是不可變的,不受此方法調用的影響。

用法:


public OffsetTime with(TemporalAdjuster adjuster)

參數:該方法接受調節器作為要使用的調節器的參數。

返回值:該方法將基於此方法返回OffsetTime並進行調整。

異常:此方法引發以下異常:

  • DateTimeException–如果無法進行調整。
  • ArithmeticException–如果發生數字溢出。

以下示例程序旨在說明with()方法:
示例1:

// Java program to demonstrate 
// OffsetTime.with() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a OffsetTime object 
        OffsetTime off 
            = OffsetTime.parse("19:19:50+06:00"); 
  
        // print instance 
        System.out.println("OffsetTime before"
                           + " adjustment: "
                           + off); 
  
        // apply with method of OffsetTime class 
        OffsetTime updatedlocal = off.with(LocalTime.NOON); 
  
        // print instance 
        System.out.println("OffsetTime after"
                           + " adjustment: "
                           + updatedlocal); 
    } 
}
輸出:
OffsetTime before adjustment: 19:19:50+06:00
OffsetTime after adjustment: 12:00+06:00

with(TemporalField field, long newValue)

OffsetTime類的with(TemporalField field,long newValue)方法用於將OffsetTime的指定字段設置為新值並返回新時間的副本。此方法可用於更改任何受支持的字段,例如小時,分鍾或第二。如果由於不支持該字段或其他原因而無法設置新值,則會引發異常。此OffsetTime實例是不可變的,不受此方法調用的影響。

用法:

public OffsetTime with(TemporalField field, long newValue)

參數:此方法接受作為結果中要設置的字段的field和作為結果中該字段的新值的newValue。

返回值:該方法基於此方法並使用指定的字段集返回OffsetTime。

異常:此方法引發以下異常:

  • DateTimeException–如果無法進行調整。
  • UnsupportedTemporalTypeException–如果不支持該字段。
  • ArithmeticException–如果發生數字溢出。

以下示例程序旨在說明with()方法:
示例1:

// Java program to demonstrate 
// OffsetTime.with() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a OffsetTime object 
        OffsetTime off 
            = OffsetTime.parse("19:19:50+06:00"); 
  
        // print instance 
        System.out.println("OffsetTime before"
                           + " applying method: "
                           + off); 
  
        // apply with method of OffsetTime class 
        OffsetTime updatedlocal 
            = off.with( 
                ChronoField.HOUR_OF_DAY, 23); 
  
        // print instance 
        System.out.println("OffsetTime after"
                           + " applying method: "
                           + updatedlocal); 
    } 
}
輸出:
OffsetTime before applying method: 19:19:50+06:00
OffsetTime after applying method: 23:19:50+06:00

參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/time/OffsetTime.html#with(java.time.temporal.TemporalAdjuster)
https://docs.oracle.com/javase/10/docs/api/java/time/OffsetTime.html#with(java.time.temporal.TemporalField,長)



相關用法


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