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


Java LocalTime atOffset()用法及代碼示例


LocalTime類的atOffset()方法用於將此時間與偏移對象組合以創建OffsetTime對象。時間和偏移量的所有可能組合均有效。

用法:

public OffsetTime atOffset(ZoneOffset offset)

參數:此方法接受單個參數偏移量,該偏移量是與LocalTime對象組合的偏移量,不能為null。


返回值:此方法返回從該時間開始的偏移時間和指定的偏移量,而不是null。

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

示例1:

// Java program to demonstrate 
// LocalTime.atOffset() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalTime Object 
        LocalTime time 
            = LocalTime.parse("16:12:49"); 
  
        // create a ZoneOffset object 
        // with 7200 sec means 2 hours 
        ZoneOffset offset 
            = ZoneOffset.ofTotalSeconds(7200); 
  
        // apply atOffset() 
        OffsetTime offsettime 
            = time.atOffset(offset); 
  
        // print LocalDateTime 
        System.out.println("Offset Time:"
                           + offsettime.toString()); 
    } 
}
輸出:
Offset Time:16:12:49+02:00

示例2:

// Java program to demonstrate 
// LocalTime.atOffset() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalTime Object 
        LocalTime time 
            = LocalTime.parse("17:52:49"); 
  
        // create a ZoneOffset object 
        // with 3 hours 45 minutes 
        ZoneOffset offset 
            = ZoneOffset.ofHoursMinutes(3, 45); 
  
        // apply atOffset() 
        OffsetTime offsettime 
            = time.atOffset(offset); 
  
        // print LocalDateTime 
        System.out.println("Offset Time:"
                           + offsettime.toString()); 
    } 
}
輸出:
Offset Time:17:52:49+03:45

參考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#atOffset(java.time.ZoneOffset)



相關用法


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