java.time.OffsetDateTime isBefore()方法

java.time.OffsetDateTime.isBefore(OffsetDateTime other)方法检查此日期是否在指定的日期时间之前。

1 语法

public boolean isBefore(OffsetDateTime other)

2 参数

other:要比较的其他日期时间,而不是null。

3 返回值

如果此日期在指定日期之前,则为true。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.OffsetDateTime isBefore()方法
 */
import java.time.OffsetDateTime;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {

      OffsetDateTime date = OffsetDateTime.parse("2017-02-03T12:30:30+01:00");
      OffsetDateTime date1 = OffsetDateTime.parse("2017-03-03T12:30:30+01:00");
      System.out.println(date1.isBefore(date));  
   }
}

输出结果为:

false

 

热门文章

优秀文章