How to compare LocalDate instances Java 8

前端 未结 3 515
误落风尘
误落风尘 2020-12-07 22:15

I am writing an app that needs to be quite accurate in dates and I wonder how can I compare LocalDate instances.. for now I was using something like:

LocalDa         


        
3条回答
  •  孤城傲影
    2020-12-07 22:37

    LocalDate ld ....;
    LocalDateTime ldtime ...;
    
    ld.isEqual(LocalDate.from(ldtime));
    

提交回复
热议问题