java.time.YearMonth.now()
方法從預設時區中的系統時鐘獲取當前年月。
以下是java.time.YearMonth.now()
方法的宣告。
public static YearMonth now()
使用系統時鐘和預設時區的當前年月,不為null
。
以下範例顯示了java.time.YearMonth.now()
方法的用法。
package com.yiibai;
import java.time.YearMonth;
public class YearMonthDemo {
public static void main(String[] args) {
YearMonth date = YearMonth.now();
System.out.println(date);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-03