当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。