java.time.LocalTime.isBefore() 方法示例



说明

java.time.LocalTime.isBefore(LocalTime other) 方法检查当前时间是否早于指定时间。

声明

以下是 java.time.LocalTime.isBefore(LocalTime other) 方法的声明:

public boolean isBefore(LocalTime other)

参数

other - 用于比较的另一个 time,非空。

返回值

如果当前时间早于指定的时间,则返回 true。

示例

以下示例展示了 java.time.LocalTime.isBefore(LocalTime other) 方法的使用:

package com.tutorialspoint;

import java.time.LocalTime;

public class LocalTimeDemo {
   public static void main(String[] args) {
 
      LocalTime time = LocalTime.parse("12:30:30");
      LocalTime time1 = LocalTime.parse("12:35:30");
      System.out.println(time1.isBefore(time));  
   }
}

让我们编译并运行上述程序,它将产生如下结果 -

false
广告