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


Java java.time.Year.isBefore()用法及代码示例



描述

这个java.time.Year.isBefore(Year other)方法检查今年是否在指定年份之前。

声明

以下是声明java.time.Year.isBefore(Year other)方法。

public boolean isBefore(Year other)

参数

other- 另一年进行比较,不为空。

返回值

如果今年早于指定年份,则为 true。

示例

下面的例子展示了 java.time.Year.isBefore(Year other) 方法的用法。

package com.tutorialspoint;

import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {
 
      Year date = Year.of(2016);
      Year date1 = Year.of(2017);
      System.out.println(date1.isBefore(date));  
   }
}

让我们编译并运行上面的程序,这将产生以下结果——

false

相关用法


注:本文由纯净天空筛选整理自 java.time.Year.isBefore() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。