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

本文详细介绍了Java中Calendar类的setTime()方法,解释了如何使用指定的Date对象设置Calendar的时间,提供了代码示例并说明了方法的语法、参数和返回值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值