首頁 > Java > java教程 > 主體

Java中如何使用YearMonth類別組合日期和時間

王林
發布: 2023-04-24 22:58:05
轉載
1546 人瀏覽過

如何表示信用卡到期這類固定日期,答案就在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中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板