Java程序检查两个日期是否相等
让我们首先声明LocalDate的对象-
日期1
LocalDate dateOne = LocalDate.now();
日期2
LocalDate dateTwo = LocalDate.of(dateOne.getYear(), dateOne.getMonth(), dateOne.getDayOfMonth());
现在让我们使用equals()方法检查两个日期是否相同-
if (dateOne.equals(dateTwo)) {
System.out.printf("\nBoth the dates are same!", dateOne, dateTwo);
}示例
import java.time.LocalDate;
public class Demo {
public static void main(String[] argv) {
LocalDate dateOne = LocalDate.now();
LocalDate dateTwo = LocalDate.of(dateOne.getYear(), dateOne.getMonth(), dateOne.getDayOfMonth());
System.out.printf("Date One = "+dateOne);
System.out.printf("\nDate Two = "+dateTwo);
if (dateOne.equals(dateTwo)) {
System.out.printf("\nBoth the dates are same!", dateOne, dateTwo);
}
}
}输出结果
Date One = 2019-04-12 Date Two = 2019-04-12 Both the dates are same!
热门推荐
5 短祝福语简短暖心
10 结婚祝福语粤语大全简短
11 晚上祝福语女生文案简短
12 法语妈妈生日祝福语简短
13 药厂开工祝福语大全简短
14 蛋糕节日祝福语简短英文
15 跨年的生日祝福语简短
16 文案祝福语英文短句简短
17 在家聚餐婚礼祝福语简短
18 学生节祝福语大全简短