java.time.LocalDate getMonthValue()方法
java.time.LocalDate.getMonthValue()方法获取1到12之间的月份字段。
1 语法
public int getMonthValue()
2 参数
无
3 返回值
月份,从1到12。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.LocalDate getMonthValue()方法
*/
import java.time.LocalDate;
public class LocalDateDemo {
public static void main(String[] args) {
LocalDate date = LocalDate.parse("2017-02-03");
System.out.println(date.getMonthValue());
}
}
输出结果为:
2
热门文章
优秀文章