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!
热门推荐
10 虎年送火腿祝福语简短
11 元旦联谊祝福语简短精辟
12 导师退休花束祝福语简短
13 九子订婚祝福语简短
14 直播祝福语老师文案简短
15 生日牌祝福语英语简短
16 女生成年祝福语简短
17 最美婆婆生日祝福语简短
18 除夕的拜年祝福语简短