java 比较时间的几种方法

2020-12-13 15:52

阅读:321

标签:new   com   ati   pre   compare   print   time()   ret   gettime   

public class Test {
    public static void main(String[] args) {
        Date date1 = new Date();
        Date date2 = new Date(date1.getTime() + 1000);

        System.out.println(date1.before(date2));
        System.out.println(date1.compareTo(date2) == -1);
        System.out.println(date1.getTime() 

java 比较时间的几种方法

标签:new   com   ati   pre   compare   print   time()   ret   gettime   

原文地址:https://www.cnblogs.com/xmsx/p/11616663.html


评论


亲,登录后才可以留言!