在Java中,可以使用java.time.YearMonth
類來獲取當月的天數(shù)。
import java.time.YearMonth;
public class Main {
public static void main(String[] args) {
YearMonth yearMonth = YearMonth.now();
int daysInMonth = yearMonth.lengthOfMonth();
System.out.println("當前月份的天數(shù):" + daysInMonth);
}
}
以上代碼中,首先創(chuàng)建了一個YearMonth
對象表示當前月份,然后使用lengthOfMonth()
方法獲取當月的天數(shù)。最后打印出當月的天數(shù)。