📌  相关文章
📜  Java中的 Year isBefore() 方法及示例

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

Java中的 Year isBefore() 方法及示例

Java中 Year 类的 isBefore() 方法用于检查当前 Year 对象是否在指定为该方法参数的 Year 之前。

语法

public boolean isBefore(Year otherYear)

参数:它接受一个参数otherYear ,当前 Year 对象将与该参数进行比较。

返回值:如果此 Year 对象的值在指定为方法参数的 Year 对象的值之前,则返回布尔 True 值,否则返回 False。

下面的程序说明了Java中 Year 的 isBefore() 方法:
程序 1

// Program to illustrate the isBefore() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Create first Year object
        Year firstYear = Year.of(2018);
  
        // Create second Year object
        Year secondYear = Year.of(1997);
  
        // Check if this year object's value is
        // before the specified Year or not
        System.out.println(firstYear.isBefore(secondYear));
    }
}
输出:
false

方案二

// Program to illustrate the isBefore() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Create first Year object
        Year firstYear = Year.of(1997);
  
        // Create second Year object
        Year secondYear = Year.of(2018);
  
        // Check if this year object's value is
        // before the specified Year or not
        System.out.println(firstYear.isBefore(secondYear));
    }
}
输出:
true

参考:https: Java/time/Year.html#isBefore-java.time.Year-