Java.util.Date.getTime() Java.util.Date.equals() Java.util.Date.getHashcode() 描述 该java.util.Date.getTime()方法返回自1970年1月1日00:00:00 GMT多少毫秒已通过 声明 以下是java.util.Date.getTime()方法的声明 public long getTime() 参数 NA 返回值 此方法返回自1970年1月1日00:00:00 GMT以来经过的毫秒数 异常 NA 实例 以下示例显示了java.util.Date.equals(obj)方法的用法。 package com.tutorialspoint; import java.util.*; public class DateDemo { public static void main(String[] args) { // create a date Date date = new Date(97, 1, 23); long diff = date.getTime(); // print how many milliseconds have passed since January 1, 1970, 00:00:00 GMT System.out.println("If date is 23-01-1997, " + diff + " have passed."); } } 让我们编译并运行上面的程序,这将产生以下结果 If date is 23-01-1997, 856648800000 seconds have passed. Java.util.Date.equals() Java.util.Date.getHashcode()