Java中的 Calendar getTime() 方法及示例
Calendar 类中的getTime()方法用于返回一个类似于 Date 的对象,该对象由该 Calendar 的时间值表示。
句法:
public final Date getTime()
参数:该方法不带任何参数。
返回值:该方法返回由此日历表示的日期。
下面的程序说明了 Calendar 类的 getTime() 方法的工作:
示例 1:
Java
// Java code to illustrate
// getTime() method
import java.util.*;
public class Calendar_Demo {
public static void main(String args[])
throws InterruptedException
{
// Creating a calendar
Calendar calndr1
= Calendar.getInstance();
// Displaying the current time
System.out.println("The Current"
+ " Time is: "
+ calndr1.getTime());
// Adding few delay
Thread.sleep(10000);
// Creating another calendar
Calendar calndr2 = Calendar.getInstance();
// Displaying the upcoming time
Date dt = calndr2.getTime();
System.out.println("The upcoming"
+ " time is: " + dt);
}
}
Java
// Java code to illustrate
// getTime() method
import java.util.*;
public class Calendar_Demo {
public static void main(String args[])
throws InterruptedException
{
// Creating a calendar
Calendar calndr1
= Calendar.getInstance();
// Displaying the current time
System.out.println("The Current"
+ " Time is: "
+ calndr1.getTime());
// Adding few delay
Thread.sleep(5000);
// Creating another calendar
Calendar calndr2 = Calendar.getInstance();
// Displaying the upcoming time
Date dt = calndr2.getTime();
System.out.println("The upcoming"
+ " time is: " + dt);
}
}
输出:
The Current Time is: Wed Feb 20 14:40:37 UTC 2019
The upcoming time is: Wed Feb 20 14:40:47 UTC 2019
示例 2:
Java
// Java code to illustrate
// getTime() method
import java.util.*;
public class Calendar_Demo {
public static void main(String args[])
throws InterruptedException
{
// Creating a calendar
Calendar calndr1
= Calendar.getInstance();
// Displaying the current time
System.out.println("The Current"
+ " Time is: "
+ calndr1.getTime());
// Adding few delay
Thread.sleep(5000);
// Creating another calendar
Calendar calndr2 = Calendar.getInstance();
// Displaying the upcoming time
Date dt = calndr2.getTime();
System.out.println("The upcoming"
+ " time is: " + dt);
}
}
输出:
The Current Time is: Wed Feb 20 14:40:50 UTC 2019
The upcoming time is: Wed Feb 20 14:40:55 UTC 2019
参考: https: Java/util/Calendar.html#getMaximum-int-