java settime_Java日历setTime()方法及示例
java settime
日歷類setTime()方法 (Calendar Class setTime() method)
setTime() method is available in java.util package.
setTime()方法在java.util包中可用。
setTime() method is used to sets time with the specified Date(d) of this Calendar.
setTime()方法用于使用此Calendar的指定Date(d)設置時間。
setTime() method is a non-static method, it is accessible with the class object and if we try to access the method with the class name then we will get an error.
setTime()方法是一種非靜態方法,可通過類對象訪問,如果嘗試使用類名訪問該方法,則會收到錯誤消息。
setTime() method does not throw an exception at the time of set Calendar time.
setTime()方法在設置日歷時間時不會引發異常。
Syntax:
句法:
public final void setTime(Date d);Parameter(s):
參數:
Date d – represents the given date.
日期d –表示給定的日期。
Return value:
返回值:
The return type of this method is void, it returns nothing.
此方法的返回類型為void ,不返回任何內容。
Example:
例:
// Java Program to demonstrate the example of // void setTime(Date d) method of Calendarimport java.util.*;public class SetTime {public static void main(String args[]) {// Instantiating a Calendar objectCalendar ca = Calendar.getInstance();// By using setTime(Date) method is to // set the date with time of the CalendarDate date = new Date(97, 10, 12);ca.setTime(date);//Display Time System.out.println("ca: " + ca.getTime());} }Output
輸出量
ca: Wed Nov 12 00:00:00 GMT 1997翻譯自: https://www.includehelp.com/java/calendar-settime-method-with-example.aspx
java settime
總結
以上是生活随笔為你收集整理的java settime_Java日历setTime()方法及示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ruby推送示例_Ruby直到示例循环
- 下一篇: arduino 休眠 节能_Arduin