当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java GregorianCalendar computeTime()用法及代码示例


GregorianCalendar类computeTime()方法

  • computeTime() 方法可在java.util包。
  • computeTime() 方法用于计算日历字段到日历时间值。
  • computeTime() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问该方法,则会出现错误。
  • computeTime() 方法在计算此日历字段的时间时不会抛出异常。

用法:

    protected void computeTime();

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是void,它什么都不返回。

例:

// Java program to demonstrate the example 
// of void computeTime() method of 
// GregorianCalendar 

import java.util.*;

public class ComputeTimeOfGregorianCalendar extends GregorianCalendar {
    public static void main(String[] args) {
        // Instantiating a ComputeTimeOfGregorianCalendar object
        ComputeTimeOfGregorianCalendar ca = new ComputeTimeOfGregorianCalendar();

        // Display current calendar
        System.out.println("ca:" + ca.getTime());

        // By using clear(int fi) method to set the
        // field unset
        ca.clear(GregorianCalendar.MONTH);

        // Display calendar
        System.out.println("ca.clear(GregorianCalendar.MONTH):" + ca.getTime());

        // By using set() method is to set a month 
        //and invoke computeTime()
        ca.set(GregorianCalendar.MONTH, 6);
        ca.computeTime();

        // Display calendar
        System.out.println("ca.set(GregorianCalendar.MONTH,6):" + ca.getTime());
    }
}

输出

ca:Sat Feb 15 07:26:06 GMT 2020
ca.clear(GregorianCalendar.MONTH):Wed Jan 15 07:26:06 GMT 2020
ca.set(GregorianCalendar.MONTH,6):Wed Jul 15 07:26:06 GMT 2020


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java GregorianCalendar computeTime() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。