- 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 - 区域标识符
- java.time - 区域偏移量
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
java.time.YearMonth.compareTo() 方法示例
说明
java.time.YearMonth.compareTo(YearMonth other) 方法将此年月与另一年月进行比较。
声明
以下是 java.time.YearMonth.compareTo(YearMonth other) 方法的声明。
public int compareTo(YearMonth other)
参数
other - 要比较的另一个年月,不能为空。
返回值
比较器值,小于则为负数,大于则为正数。
示例
以下示例展示了 java.time.YearMonth.compareTo(YearMonth other) 方法的使用。
package com.tutorialspoint; import java.time.YearMonth; public class YearMonthDemo { public static void main(String[] args) { YearMonth date = YearMonth.of(2005,11); YearMonth date1 = YearMonth.of(2006,11); System.out.println(date.compareTo(date1)); } }
编译并运行以上程序,结果如下:
-1
广告