📜  Java中的 OffsetTime until() 方法及示例

📅  最后修改于: 2022-05-13 01:54:31.555000             🧑  作者: Mango

Java中的 OffsetTime until() 方法及示例

OffsetTime类的until()方法,用于使用 TemporalUnit 计算两个 OffsetTime 对象之间的时间量。起点和终点是 this 和作为参数传递的指定 OffsetTime。如果结束在开始之前,结果将为负数。计算返回一个整数,表示两个 OffsetTime 之间的完整单位数。此实例是不可变的,不受此方法调用的影响。

句法:

public long until(Temporal endExclusive, TemporalUnit unit)

参数:此方法接受两个参数 endExclusive 是结束日期,exclusive 是转换为 OffsetTime 和 unit 是衡量金额的单位。

返回值:此方法返回此 OffsetTime 和结束 OffsetTime 之间的时间量。

异常:此方法抛出以下异常:

  • DateTimeException – 如果无法计算金额,或者无法将结束时间转换为 OffsetTime。
  • UnsupportedTemporalTypeException – 如果不支持该单位。
  • ArithmeticException – 如果发生数字溢出。

下面的程序说明了 until() 方法:
方案一:

// Java program to demonstrate
// OffsetTime.until() method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create OffsetTime objects
        OffsetTime o1 = OffsetTime.parse("03:30:30+05:00");
        OffsetTime o2 = OffsetTime.parse("23:30:30+05:00");
  
        // apply until method of OffsetTime class
        long result
            = o1.until(o2,
                       ChronoUnit.MINUTES);
  
        // print results
        System.out.println("Result in MINUTES: "
                           + result);
    }
}
输出:
Result in MINUTES: 1200

方案二:

// Java program to demonstrate
// OffsetTime.until() method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create OffsetTime objects
        OffsetTime o1 = OffsetTime.parse("03:30:30+05:00");
        OffsetTime o2 = OffsetTime.parse("19:30:30+05:00");
  
        // apply until method of OffsetTime class
        long result
            = o1.until(o2,
                       ChronoUnit.HOURS);
  
        // print results
        System.out.println("Result in HOURS: "
                           + result);
    }
}
输出:
Result in HOURS: 16

参考:
https://docs.oracle.com/javase/10/docs/api/java Java .time.temporal.Temporal, Java Java)