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


Java Clock offset()用法及代碼示例


Clock類offset()方法

  • offset() 方法可在java.time包。
  • offset() 方法用於從給定的基本時鍾生成一個新的時鍾,並添加給定的持續時間。
  • offset() 方法是一個靜態方法,它可以通過類名訪問,如果我們嘗試使用類對象訪問該方法,那麽我們不會得到錯誤。
  • offset() 方法表示時鍾時不拋出異常。

用法:

    public static Clock offset(Clock base_cl, Duration off);

參數:

  • Clock base_cl– 表示添加給定持續時間的基本時鍾。
  • Duration off– 表示要添加到給定基本時鍾 (base_cl) 的偏移量。

返回值:

這個方法的返回類型是Clock,它返回添加了給定偏移量的可用時鍾對象。

例:

// Java program to demonstrate the example 
// of offset(Clock base_cl, Duration off) method of Clock

import java.time.*;

public class OffsetOfClock {
    public static void main(String args[]) {
        // Instantiates two ZoneId for Accra and Asmara
        ZoneId zone_1 = ZoneId.of("Africa/Accra");
        ZoneId zone_2 = ZoneId.of("Africa/Asmara");

        // Initialize two Clock objects 
        // and one Duration
        Clock cl1 = Clock.system(zone_1);
        Clock cl2 = Clock.system(zone_2);
        Duration offset = Duration.ofMinutes(20);

        // generates a new Clock from the
        // given clock(cl1) with the given duration added
        Clock cl_offset = cl1.offset(cl1, offset);

        // Display cl1 and cl_offset instant
        System.out.println("cl1.instant():" + cl1.instant());
        System.out.println("cl_offset.instant():" + cl_offset.instant());

        System.out.println();

        // generates a new Clock from the
        // given clock(cl2) with the given duration added
        cl_offset = cl2.offset(cl2, offset);

        // Display cl2 and cl_offset instant
        System.out.println("cl2.instant():" + cl2.instant());
        System.out.println("cl_offset.instant():" + cl_offset.instant());
    }
}

輸出

cl1.instant():2020-05-13T19:04:36.242559Z
cl_offset.instant():2020-05-13T19:24:36.322896Z

cl2.instant():2020-05-13T19:04:36.324623Z
cl_offset.instant():2020-05-13T19:24:36.327267Z


相關用法


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