找出JAVA中date类的所有方法
时间: 2024-06-03 22:07:35 浏览: 181
1. after(Date when) - 比较两个日期,判断当前日期是否在when日期之后
2. before(Date when) - 比较两个日期,判断当前日期是否在when日期之前
3. clone() - 克隆当前日期对象
4. compareTo(Date anotherDate) - 比较两个日期,返回值为0表示相等,小于0表示当前日期在anotherDate日期之前,大于0表示当前日期在anotherDate日期之后
5. equals(Object obj) - 判断当前日期对象是否与另一个日期对象相等
6. getTime() - 返回当前日期对象表示的时间戳,以毫秒为单位
7. hashCode() - 返回当前日期对象的哈希值
8. setTime(long time) - 设置当前日期对象表示的时间戳
9. toString() - 将当前日期对象转换为字符串形式
10. toInstant() - 将当前日期对象转换为Instant对象
11. toLocaleString() - 将当前日期对象转换为本地化字符串形式
12. toGMTString() - 将当前日期对象转换为GMT标准时间字符串形式
13. toInstant() - 将当前日期对象转换为Instant对象
14. setTimezoneOffset(int offset) - 设置当前日期对象的时区偏移量
15. from(Instant instant) - 将Instant对象转换为日期对象
16. from(ZonedDateTime zdt) - 将ZonedDateTime对象转换为日期对象
17. getYear() - 返回当前日期对象的年份(从1900年开始计算)
18. getMonth() - 返回当前日期对象的月份(0表示1月,11表示12月)
19. getDate() - 返回当前日期对象的日份
20. getDay() - 返回当前日期对象的星期几(0表示星期日,6表示星期六)
21. getHours() - 返回当前日期对象的小时数(24小时制)
22. getMinutes() - 返回当前日期对象的分钟数
23. getSeconds() - 返回当前日期对象的秒数
24. getTimezoneOffset() - 返回当前日期对象的时区偏移量
25. setYear(int year) - 设置当前日期对象的年份
26. setMonth(int month) - 设置当前日期对象的月份
27. setDate(int date) - 设置当前日期对象的日份
28. setHours(int hours) - 设置当前日期对象的小时数
29. setMinutes(int minutes) - 设置当前日期对象的分钟数
30. setSeconds(int seconds) - 设置当前日期对象的秒数
阅读全文