java.time.OffsetDateTime isAfter()方法

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

1 语法

public boolean isAfter(OffsetDateTime other)

2 参数

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

3 返回值

如果此日期时间在指定的日期时间之后,则为true。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.OffsetDateTime isAfter()方法
 */
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.isAfter(date));  
   }
}

输出结果为:

true

 

热门文章

优秀文章