Date d1 = new Date(System.currentTimeMillis()-1000);
Date d2 = new Date(System.currentTimeMillis());
System.out.println(d1.compareTo(d2));
java util date 自带了compareTo 功能,可直接比较大小。
前者大于后者 返回大于0 反之小于0。
2022-11-28 08:08:27
Date d1 = new Date(System.currentTimeMillis()-1000);
Date d2 = new Date(System.currentTimeMillis());
System.out.println(d1.compareTo(d2));
java util date 自带了compareTo 功能,可直接比较大小。
前者大于后者 返回大于0 反之小于0。