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 Calendar

import java.util.*;

public class SetTime {
    public static void main(String args[]) {
        // Instantiating a Calendar object
        Calendar ca = Calendar.getInstance();

        // By using setTime(Date) method is to 
        // set the date with time of the Calendar

        Date 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,spring,python,jdk,linux)