欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

java settime_Java日历setTime()方法及示例

发布时间:2025/3/11 55 豆豆
生活随笔 收集整理的这篇文章主要介绍了 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()方法及示例的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。