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


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


Java Date 类的 getMonth() 方法返回 0 到 11 之间的值,代表一年中的月份。此方法自 JDK 1.1 版起已弃用,并由 Calender.get(Calender.MONTH) 取代

月份
0 January
1 February
2 March
3 April
4 May
5 June
6 July
7 August
8 September
9 October
10 November
11 December

用法:

@Deprecated
public int getMonth()

参数

NA

返回

它返回此日期对象表示的年份中的月份。

示例

import java.util.Date;

public class JavaDateGetMontExample1 {

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

输出:

Month of the year is :8






相关用法


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