共计 486 个字符,预计需要花费 2 分钟才能阅读完成。
Java 中可以使用以下几种方法来创建 Date 对象:
- 使用无参构造函数创建一个表示当前日期和时间的 Date 对象:
Date date = new Date();
- 使用指定的毫秒数创建一个 Date 对象,该毫秒数表示从 1970 年 1 月 1 日 00:00:00 GMT 开始计算的时间:
Date date = new Date(long milliseconds);
- 使用指定的年、月、日、小时、分钟和秒创建一个 Date 对象:
Date date = new Date(int year, int month, int day, int hour, int minute, int second);
- 使用 Calendar 对象的 getTime() 方法来获取一个表示当前日期和时间的 Date 对象:
Calendar calendar = Calendar.getInstance();
Date date = calendar.getTime();
注意:Date 类在 Java 8 中已被标记为过时,推荐使用新的日期和时间 API(如 java.time 包中的 LocalDate、LocalTime 和 LocalDateTime)来处理日期和时间。
丸趣 TV 网 – 提供最优质的资源集合!
正文完