- java.time 包类
- java.time - 首页
- java.time - 时钟
- java.time - 时间段
- java.time - Instant
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 时间段
- java.time - 年份
- java.time - 年月
- java.time - 带时区日期时间
- java.time - 时区 ID
- java.time - 时区偏移
- java.time 包枚举
- java.time - 月份
- java.time 实用资源
- java.time - 论坛
java.time.LocalDateTime.equals() 方法示例
说明
java.time.LocalDateTime.equals(Object obj) 方法检查此日期时间是否等于另一个日期时间。
声明
以下是 java.time.LocalDateTime.equals(Object obj) 方法的声明。
public boolean equals(Object obj)
参数
obj - 检查此日期时间是否等于另一个日期时间。
返回值
如果这等于其他日期时间,则返回 true。
示例
以下示例演示了 java.time.LocalDateTime.equals(Object obj) 方法的用法。
package com.tutorialspoint; import java.time.LocalDateTime; public class LocalDateTimeDemo { public static void main(String[] args) { LocalDateTime date = LocalDateTime.parse("2017-02-03T12:30:30"); System.out.println(date); LocalDateTime date1 = LocalDateTime.parse("2017-03-03T12:30:30"); System.out.println(date1); System.out.println(date1.equals(date)); } }
让我们编译并运行以上程序,它将生成以下结果 -
2017-02-03T12:30:30 2017-03-03T12:30:30 false
广告