如何表示信用卡到期這類固定日期,答案就在YearMonth
#與MonthDay檢查重複事件的例子相似,YearMonth是另一個組合類,用於表示信用卡到期日、FD到期日、期貨選擇權到期日等。也可以用這個類別得到 當月共有多少天,YearMonth實例的lengthOfMonth()方法可以傳回當月的天數,在判斷2月有28天還是29天時非常有用。
package com.shxt.demo02; import java.time.*; public class Demo13 { public static void main(String[] args) { YearMonth currentYearMonth = YearMonth.now(); System.out.printf("Days in month year %s: %d%n", currentYearMonth, currentYearMonth.lengthOfMonth()); YearMonth creditCardExpiry = YearMonth.of(2019, Month.FEBRUARY); System.out.printf("Your credit card expires on %s %n", creditCardExpiry); } }
以上是Java中如何使用YearMonth類別組合日期和時間的詳細內容。更多資訊請關注PHP中文網其他相關文章!