- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 瞬间
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年
- java.time - 年月
- java.time - 分区日期时间
- java.time - 时区 ID
- java.time - 时区偏移量
- java.time 包枚举
- java.time - 月
- java.time 有用资源
- java.time - 讨论
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
广告