java.time.LocalDate.getMonthValue()
方法獲取1到12之間的月份欄位。
以下是java.time.LocalDate.getMonthValue()
方法的宣告。
public int getMonthValue()
月份,從1
到12
。
以下範例顯示了java.time.LocalDate.getMonthValue()
方法的用法。
package com.yiibai;
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