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


Java Date getSeconds()用法及代码示例


Java Date 类的 getSeconds() 方法返回 0 到 61 之间的值,该值表示过去一分钟的秒数,此日期对象表示一分钟的秒数。

此方法自 JDK 1.1 版起已弃用,取而代之的是 Calender.get(Calender.SECOND)

用法:

@Deprecated
public int getSeconds()

参数

NA

返回

它返回此日期对象表示的过去一分钟的秒数。

例子1

import java.util.Date;

public class JavaDateGetSecondsExample1 {

	public static void main(String[] args) {
		Date d=new Date();
		System.out.println("Second of the minute is :"+d.getSeconds());
		}
}

输出:

Second of the minute is :53






相关用法


注:本文由纯净天空筛选整理自 Java Date getSeconds() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。