java.time.Month getValue()方法
java.time.Month.getValue()方法获取月份的年中的int值。
1 语法
public int getValue()
2 参数
无
3 返回值
每年的一个月,从1月1日到12月12日。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Month getValue()方法
*/
import java.time.Month;
public class MonthDemo {
public static void main(String[] args) {
Month month = Month.FEBRUARY;
System.out.println(month.getValue());
}
}
输出结果为:
2
热门文章
优秀文章